UNPKG

sherry-utils

Version:
10 lines (8 loc) 213 B
const test = require('ava') const { isLocalPath } = require('../') test('works', t => { t.true(isLocalPath('./ff')) t.true(isLocalPath('/ff')) t.true(isLocalPath('c:///ff')) t.false(isLocalPath('ff')) })