Sha256: 408ff0b29cf422847fb815b65ac50cb1362f9ceead531629bb291ea3dda8b4b9
Contents?: true
Size: 301 Bytes
Versions: 69
Compression:
Stored size: 301 Bytes
Contents
var toString = require('../lang/toString'); /** * Checks if string starts with specified prefix. */ function startsWith(str, prefix) { str = toString(str); prefix = toString(prefix); return str.indexOf(prefix) === 0; } module.exports = startsWith;
Version data entries
69 entries across 69 versions & 2 rubygems