UNPKG

generator-ssjs

Version:

yo generator to scaffold an [SSJS Framework](https://adessose.github.io/ssjs-webpack/) project. ## Installation ``` # install yo npm install --global yo

8 lines (7 loc) 196 B
// String.prototype.startsWith if (!String.prototype.startsWith) { String.prototype.startsWith = function(search, pos) { pos = pos || 0; return this.indexOf(search, pos) === pos; }; }