UNPKG

@nodesecure/js-x-ray

Version:
11 lines 311 B
// CONSTANTS const kNodeModulePrefix = "node:"; export function stripNodePrefix(value) { if (typeof value !== "string") { return value; } return value.startsWith(kNodeModulePrefix) ? value.slice(kNodeModulePrefix.length) : value; } //# sourceMappingURL=stripNodePrefix.js.map