sugar
Version:
A Javascript utility library for working with native objects.
15 lines (10 loc) • 349 B
JavaScript
;
var Sugar = require('sugar-core'),
TRIM_REG = require('../../es5/var/TRIM_REG');
Sugar.String.defineInstancePolyfill({
'trim': function() {
return this.toString().replace(TRIM_REG, '');
}
});
// This package does not export anything as it is mapping a
// polyfill to String.prototype which cannot be called statically.