mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
6 lines
194 B
TypeScript
6 lines
194 B
TypeScript
import isAbsolute = require('is-absolute');
|
|
|
|
isAbsolute('a/b/c.js'); // $ExpectType boolean
|
|
isAbsolute.posix('/foo/bar'); // $ExpectType boolean
|
|
isAbsolute.win32('c:\\'); // $ExpectType boolean
|