Lines Matching refs:extname
55 [path.posix.extname, path.win32.extname].forEach((extname) => {
58 if (extname === path.win32.extname) {
64 const actual = extname(input);
72 const actual = path.win32.extname(input);
82 assert.strictEqual(path.win32.extname('.\\'), '');
83 assert.strictEqual(path.win32.extname('..\\'), '');
84 assert.strictEqual(path.win32.extname('file.ext\\'), '.ext');
85 assert.strictEqual(path.win32.extname('file.ext\\\\'), '.ext');
86 assert.strictEqual(path.win32.extname('file\\'), '');
87 assert.strictEqual(path.win32.extname('file\\\\'), '');
88 assert.strictEqual(path.win32.extname('file.\\'), '.');
89 assert.strictEqual(path.win32.extname('file.\\\\'), '.');
92 assert.strictEqual(path.posix.extname('.\\'), '');
93 assert.strictEqual(path.posix.extname('..\\'), '.\\');
94 assert.strictEqual(path.posix.extname('file.ext\\'), '.ext\\');
95 assert.strictEqual(path.posix.extname('file.ext\\\\'), '.ext\\\\');
96 assert.strictEqual(path.posix.extname('file\\'), '');
97 assert.strictEqual(path.posix.extname('file\\\\'), '');
98 assert.strictEqual(path.posix.extname('file.\\'), '.\\');
99 assert.strictEqual(path.posix.extname('file.\\\\'), '.\\\\');