UNPKG

ember-material-icons

Version:

Google Material icons for your ember-cli app

14 lines (10 loc) 301 B
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;