UNPKG

ember-cli-ajh

Version:

Command line tool for developing ambitious ember.js apps

15 lines (11 loc) 315 B
define(['../lang/toString'], function(toString) { /** * Searches for a given substring */ function contains(str, substring, fromIndex){ str = toString(str); substring = toString(substring); return str.indexOf(substring, fromIndex) !== -1; } return contains; });