UNPKG

node-pluginsmanager-plugin

Version:
8 lines (7 loc) 263 B
"use strict"; // module Object.defineProperty(exports, "__esModule", { value: true }); exports.default = removeFirstSlash; function removeFirstSlash(path) { return "string" === typeof path && "/" === path[0] ? path.substring(1, path.length) : String(path); }