c63b1d5481a2656b3bfab30388ac7d41dbc28a6cf20ac257cc3167a9af737cf2b0f068f828e6c6236b15d2f7beedb4ffa696972fe5e23dca0b0a830f15b7f9 610 B

12345678910111213141516171819202122232425262728
  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. function createUnix (input) {
  9. return createLocal(input * 1000);
  10. }
  11. function createInZone () {
  12. return createLocal.apply(null, arguments).parseZone();
  13. }
  14. export {
  15. now,
  16. min,
  17. max,
  18. isMoment,
  19. createUTC,
  20. createUnix,
  21. createLocal,
  22. createInZone,
  23. createInvalid,
  24. momentPrototype
  25. };