PATH:
opt
/
bitninja-threat-hunting
/
node_modules
/
moment
/
src
/
lib
/
units
import { makeGetSet } from '../moment/get-set'; import { addFormatToken } from '../format/format'; import { addUnitAlias } from './aliases'; import { addUnitPriority } from './priorities'; import { addRegexToken, match1to2, match2 } from '../parse/regex'; import { addParseToken } from '../parse/token'; import { SECOND } from './constants'; // FORMATTING addFormatToken('s', ['ss', 2], 0, 'second'); // ALIASES addUnitAlias('second', 's'); // PRIORITY addUnitPriority('second', 15); // PARSING addRegexToken('s', match1to2); addRegexToken('ss', match1to2, match2); addParseToken(['s', 'ss'], SECOND); // MOMENTS export var getSetSecond = makeGetSet('Seconds', false);
[-] month.js
[edit]
[-] minute.js
[edit]
[-] week.js
[edit]
[-] era.js
[edit]
[-] timestamp.js
[edit]
[-] quarter.js
[edit]
[-] second.js
[edit]
[+]
..
[-] offset.js
[edit]
[-] week-year.js
[edit]
[-] day-of-month.js
[edit]
[-] priorities.js
[edit]
[-] timezone.js
[edit]
[-] year.js
[edit]
[-] week-calendar-utils.js
[edit]
[-] day-of-week.js
[edit]
[-] millisecond.js
[edit]
[-] day-of-year.js
[edit]
[-] aliases.js
[edit]
[-] hour.js
[edit]
[-] constants.js
[edit]
[-] units.js
[edit]