PHP Classes

File: upload/themes/bb_simple/assets/moment/src/lib/units/timestamp.js

Recommend this page to a friend!
  Classes of James Brows   PHP Bulletin Board   upload/themes/bb_simple/assets/moment/src/lib/units/timestamp.js   Download  
File: upload/themes/bb_simple/assets/moment/src/lib/units/timestamp.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Bulletin Board
Manage and post messages in multi-user forums
Author: By
Last change:
Date: 2 years ago
Size: 594 bytes
 

Contents

Class file image Download
import { addFormatToken } from '../format/format'; import { addRegexToken, matchTimestamp, matchSigned } from '../parse/regex'; import { addParseToken } from '../parse/token'; import toInt from '../utils/to-int'; // FORMATTING addFormatToken('X', 0, 0, 'unix'); addFormatToken('x', 0, 0, 'valueOf'); // PARSING addRegexToken('x', matchSigned); addRegexToken('X', matchTimestamp); addParseToken('X', function (input, array, config) { config._d = new Date(parseFloat(input, 10) * 1000); }); addParseToken('x', function (input, array, config) { config._d = new Date(toInt(input)); });