startWith.js 102 B

12345
  1. exports = function(str, prefix) {
  2. return str.indexOf(prefix) === 0;
  3. };
  4. module.exports = exports;