MCPcopy Index your code
hub / github.com/browserify/browserify / isAbsolutePath

Function isAbsolutePath

index.js:861–866  ·  view source on GitHub ↗
(file)

Source from the content-addressed store, hash-verified

859
860function isStream (s) { return s && typeof s.pipe === 'function' }
861function isAbsolutePath (file) {
862 var regexp = process.platform === 'win32' ?
863 /^\w:/ :
864 /^\//;
865 return regexp.test(file);
866}
867function isExternalModule (file) {
868 var regexp = process.platform === 'win32' ?
869 /^(\.|\w:)/ :

Callers 1

index.jsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…