UNPKG

gulp-path-length

Version:

A Gulp plugin for enforcing a character limit on file paths

10 lines (7 loc) 204 B
var path; path = require('path'); module.exports = function(filePath, match, replacement) { match = path.resolve(match); replacement = replacement; return filePath.replace(match, replacement); };