dfcreative/mustring

View on GitHub
unprefix.js

Summary

Maintainability
A
0 mins
Test Coverage
// onEvt → envt
module.exports = function(str, pf){
    return (str.slice(0,pf.length) === pf) ? str.slice(pf.length).toLowerCase() : str;
}