Sha256: 70d3c0863ef215e058e72b67e342e6485065121dd8dc58e8c45472d42ab8af30
Contents?: true
Size: 464 Bytes
Versions: 19
Compression:
Stored size: 464 Bytes
Contents
import { module, test } from '../qunit'; import moment from '../../moment'; module('string prototype'); test('string prototype overrides call', function (assert) { var prior = String.prototype.call, b; String.prototype.call = function () { return null; }; b = moment(new Date(2011, 7, 28, 15, 25, 50, 125)); assert.equal(b.format('MMMM Do YYYY, h:mm a'), 'August 28th 2011, 3:25 pm'); String.prototype.call = prior; });
Version data entries
19 entries across 19 versions & 1 rubygems