corrade-nucleus-nucleons – Blame information for rev 14

Subversion Repositories:
Rev:
Rev Author Line No. Line
10 office 1 import { createLocal } from '../create/local';
2 import { createUTC } from '../create/utc';
3 import { createInvalid } from '../create/valid';
4 import { isMoment } from './constructor';
5 import { min, max } from './min-max';
6 import { now } from './now';
7 import momentPrototype from './prototype';
8  
9 function createUnix (input) {
10 return createLocal(input * 1000);
11 }
12  
13 function createInZone () {
14 return createLocal.apply(null, arguments).parseZone();
15 }
16  
17 export {
18 now,
19 min,
20 max,
21 isMoment,
22 createUTC,
23 createUnix,
24 createLocal,
25 createInZone,
26 createInvalid,
27 momentPrototype
28 };