Lines Matching refs:base
54 ['t', { base: 't', name: 't', root: '', dir: '', ext: '' }],
55 ['/foo/bar', { root: '/', dir: '/foo', base: 'bar', ext: '', name: 'bar' }],
60 [{ base: 'index.html' }, 'index.html'],
94 [{ base: 'index.html' }, 'index.html'],
125 [['.\\', { root: '', dir: '', base: '.', ext: '', name: '.' }],
126 ['\\\\', { root: '\\', dir: '\\', base: '', ext: '', name: '' }],
127 ['\\\\', { root: '\\', dir: '\\', base: '', ext: '', name: '' }],
129 { root: 'c:\\', dir: 'c:\\', base: 'foo', ext: '', name: 'foo' }],
133 base: 'bar.baz',
140 [['./', { root: '', dir: '', base: '.', ext: '', name: '.' }],
141 ['//', { root: '/', dir: '/', base: '', ext: '', name: '' }],
142 ['///', { root: '/', dir: '/', base: '', ext: '', name: '' }],
143 ['/foo///', { root: '/', dir: '/', base: 'foo', ext: '', name: 'foo' }],
145 { root: '/', dir: '/foo//', base: 'bar.baz', ext: '.baz', name: 'bar' },
193 assert.strictEqual(typeof output.base, 'string');
200 assert.strictEqual(output.base, path.basename(element));