UNPKG

ember-material-icons

Version:

Google Material icons for your ember-cli app

14 lines (11 loc) 301 B
define(['../lang/toString'], function (toString) { /** * Checks if string starts with specified prefix. */ function startsWith(str, prefix) { str = toString(str); prefix = toString(prefix); return str.indexOf(prefix) === 0; } return startsWith; });