0.0.2 • Published 9 years ago

@nathanfaucett/path_to_regexp v0.0.2

Weekly downloads
1
License
MIT
Repository
github
Last release
9 years ago

pathToRegExp

pathToRegExp for the browser and node.js

var pathToRegExp = require("@nathanfaucett/path_to_regexp");


var params = [],
    regexp = pathToRegExp("/parent/:parentId{[0-9]+}", params, false),
    regexpEnd = pathToRegExp("/parent/:parentId{[0-9]+}/child/:id{[0-9]+}(.:format{\\w+})", true);


console.log(regexp.exec("/parent/1/child/1"));
console.log(regexpEnd.exec("/parent/1/child/1.json"));