Sha256: b5d58bc92f3e317fd23ab9b3d7c970e884bce486b31f904c75d06393c68fe90f
Contents?: true
Size: 1.57 KB
Versions: 4
Compression:
Stored size: 1.57 KB
Contents
// ========================================================================== // Project: SproutCore - JavaScript Application Framework // Copyright: ©2006-2011 Strobe Inc. and contributors. // Portions ©2008-2011 Apple Inc. All rights reserved. // License: Licensed under MIT license (see license.js) // ========================================================================== sc_require('system/string'); SC.supplement(String.prototype, /** @scope String.prototype */ { /** @see SC.String.capitalize */ capitalize: function() { return SC.String.capitalize(this, arguments); }, /** @see SC.String.camelize */ camelize: function() { return SC.String.camelize(this, arguments); }, /** @see SC.String.decamelize */ decamelize: function() { return SC.String.decamelize(this, arguments); }, /** @see SC.String.dasherize */ dasherize: function() { return SC.String.dasherize(this, arguments); }, /** @see SC.String.escapeCssIdForSelector */ escapeCssIdForSelector: function () { return SC.String.escapeCssIdForSelector(this); }, /** @see SC.String.loc */ loc: function() { var args = SC.$A(arguments); args.unshift(this); return SC.String.loc.apply(SC.String, args); }, /** @see SC.String.locWithDefault */ locWithDefault: function(def) { var args = SC.$A(arguments); args.unshift(this); return SC.String.locWithDefault.apply(SC.String, args); }, /** @see SC.String.mult */ mult: function(value) { return SC.String.mult(this, value); } });
Version data entries
4 entries across 4 versions & 1 rubygems