%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
| Server IP : 14.207.165.8 / Your IP : 216.73.216.26 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/thread-self/root/var/www/html/ppaobm/vendor/bower-asset/moment/src/test/moment/ |
Upload File : |
import { module, test } from '../qunit';
import moment from '../../moment';
module('mutable');
test('manipulation methods', function (assert) {
var m = moment();
assert.equal(m, m.year(2011), 'year() should be mutable');
assert.equal(m, m.month(1), 'month() should be mutable');
assert.equal(m, m.hours(7), 'hours() should be mutable');
assert.equal(m, m.minutes(33), 'minutes() should be mutable');
assert.equal(m, m.seconds(44), 'seconds() should be mutable');
assert.equal(m, m.milliseconds(55), 'milliseconds() should be mutable');
assert.equal(m, m.day(2), 'day() should be mutable');
assert.equal(m, m.startOf('week'), 'startOf() should be mutable');
assert.equal(m, m.add(1, 'days'), 'add() should be mutable');
assert.equal(m, m.subtract(2, 'years'), 'subtract() should be mutable');
assert.equal(m, m.local(), 'local() should be mutable');
assert.equal(m, m.utc(), 'utc() should be mutable');
});
test('non mutable methods', function (assert) {
var m = moment();
assert.notEqual(m, m.clone(), 'clone() should not be mutable');
});