First commit
This commit is contained in:
21
hGameTest/node_modules/time-stamp/LICENSE
generated
vendored
Normal file
21
hGameTest/node_modules/time-stamp/LICENSE
generated
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2015-present, Jon Schlinkert.
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
THE SOFTWARE.
|
||||
214
hGameTest/node_modules/time-stamp/README.md
generated
vendored
Normal file
214
hGameTest/node_modules/time-stamp/README.md
generated
vendored
Normal file
@@ -0,0 +1,214 @@
|
||||
# time-stamp [](https://www.npmjs.com/package/time-stamp) [](https://npmjs.org/package/time-stamp) [](https://npmjs.org/package/time-stamp) [](https://travis-ci.org/jonschlinkert/time-stamp)
|
||||
|
||||
> Get a formatted timestamp.
|
||||
|
||||
Please consider following this project's author, [Jon Schlinkert](https://github.com/jonschlinkert), and consider starring the project to show your :heart: and support.
|
||||
|
||||
- [Install](#install)
|
||||
- [Usage](#usage)
|
||||
- [Customizing the timestamp](#customizing-the-timestamp)
|
||||
- [Release history](#release-history)
|
||||
* [v2.0.0](#v200)
|
||||
- [About](#about)
|
||||
|
||||
_(TOC generated by [verb](https://github.com/verbose/verb) using [markdown-toc](https://github.com/jonschlinkert/markdown-toc))_
|
||||
|
||||
## Install
|
||||
|
||||
Install with [npm](https://www.npmjs.com/):
|
||||
|
||||
```sh
|
||||
$ npm install --save time-stamp
|
||||
```
|
||||
|
||||
## Usage
|
||||
|
||||
```js
|
||||
const timestamp = require('time-stamp');
|
||||
|
||||
console.log(timestamp());
|
||||
//=> 2018-10-26
|
||||
|
||||
console.log(timestamp.utc());
|
||||
//=> 2018-10-26
|
||||
```
|
||||
|
||||
## Customizing the timestamp
|
||||
|
||||
You may also pass a string to format the generated timestamp.
|
||||
|
||||
```js
|
||||
console.log(timestamp('YYYYMMDD'));
|
||||
//=> 20181026
|
||||
|
||||
console.log(timestamp.utc('YYYYMMDD'));
|
||||
//=> 20181026
|
||||
```
|
||||
|
||||
**Supported patterns**
|
||||
|
||||
* `YYYY`: full year (ex: **2018**)
|
||||
* `MM`: month (ex: **04**)
|
||||
* `DD`: day (ex: **01**)
|
||||
* `HH`: hours (ex: **12**)
|
||||
* `mm`: minutes (ex: **59**)
|
||||
* `ss`: seconds (ex: **09**)
|
||||
* `ms`: milliseconds (ex: **532**)
|
||||
|
||||
**Usage Examples**
|
||||
|
||||
```js
|
||||
console.log(timestamp('YYYYMMDD'));
|
||||
//=> 20181026
|
||||
console.log(timestamp.utc('YYYYMMDD'));
|
||||
//=> 20181026
|
||||
|
||||
console.log(timestamp('YYYYMMDD:ss'));
|
||||
//=> 20181026:24
|
||||
console.log(timestamp.utc('YYYYMMDD:ss'));
|
||||
//=> 20181026:24
|
||||
|
||||
console.log(timestamp('YYYY/MM/DD:mm:ss'));
|
||||
//=> 2018/10/26:46:24
|
||||
console.log(timestamp.utc('YYYY/MM/DD:mm:ss'));
|
||||
//=> 2018/10/26:46:24
|
||||
|
||||
console.log(timestamp('YYYY:MM:DD'));
|
||||
//=> 2018:10:26
|
||||
console.log(timestamp.utc('YYYY:MM:DD'));
|
||||
//=> 2018:10:26
|
||||
|
||||
console.log(timestamp('[YYYY:MM:DD]'));
|
||||
//=> [2018:10:26]
|
||||
console.log(timestamp.utc('[YYYY:MM:DD]'));
|
||||
//=> [2018:10:26]
|
||||
|
||||
console.log(timestamp('YYYY/MM/DD'));
|
||||
//=> 2018/10/26
|
||||
console.log(timestamp.utc('YYYY/MM/DD'));
|
||||
//=> 2018/10/26
|
||||
|
||||
console.log(timestamp('YYYY:MM'));
|
||||
//=> 2018:10
|
||||
console.log(timestamp.utc('YYYY:MM'));
|
||||
//=> 2018:10
|
||||
|
||||
console.log(timestamp('YYYY'));
|
||||
//=> 2018
|
||||
console.log(timestamp.utc('YYYY'));
|
||||
//=> 2018
|
||||
|
||||
console.log(timestamp('MM'));
|
||||
//=> 10
|
||||
console.log(timestamp.utc('MM'));
|
||||
//=> 10
|
||||
|
||||
console.log(timestamp('DD'));
|
||||
//=> 26
|
||||
console.log(timestamp.utc('DD'));
|
||||
//=> 26
|
||||
|
||||
console.log(timestamp('HH'));
|
||||
//=> 00
|
||||
console.log(timestamp.utc('HH'));
|
||||
//=> 04
|
||||
|
||||
console.log(timestamp('mm'));
|
||||
//=> 46
|
||||
console.log(timestamp.utc('mm'));
|
||||
//=> 46
|
||||
|
||||
console.log(timestamp('ss'));
|
||||
//=> 24
|
||||
console.log(timestamp.utc('ss'));
|
||||
//=> 24
|
||||
|
||||
console.log(timestamp('ms'));
|
||||
//=> 186
|
||||
console.log(timestamp.utc('ms'));
|
||||
//=> 186
|
||||
```
|
||||
|
||||
## Release history
|
||||
|
||||
### v2.0.0
|
||||
|
||||
**Breaking changes**
|
||||
|
||||
Default pattern was changed from `YYYY:MM:DD` to `YYYY-MM-DD`. See [issues/3](../../issues) for more details.
|
||||
|
||||
## About
|
||||
|
||||
<details>
|
||||
<summary><strong>Contributing</strong></summary>
|
||||
|
||||
Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue](../../issues/new).
|
||||
|
||||
</details>
|
||||
|
||||
<details>
|
||||
<summary><strong>Running Tests</strong></summary>
|
||||
|
||||
Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:
|
||||
|
||||
```sh
|
||||
$ npm install && npm test
|
||||
```
|
||||
|
||||
</details>
|
||||
|
||||
<details>
|
||||
<summary><strong>Building docs</strong></summary>
|
||||
|
||||
_(This project's readme.md is generated by [verb](https://github.com/verbose/verb-generate-readme), please don't edit the readme directly. Any changes to the readme must be made in the [.verb.md](.verb.md) readme template.)_
|
||||
|
||||
To generate the readme, run the following command:
|
||||
|
||||
```sh
|
||||
$ npm install -g verbose/verb#dev verb-generate-readme && verb
|
||||
```
|
||||
|
||||
</details>
|
||||
|
||||
### Related projects
|
||||
|
||||
You might also be interested in these projects:
|
||||
|
||||
* [days](https://www.npmjs.com/package/days): Days of the week. | [homepage](https://github.com/jonschlinkert/days "Days of the week.")
|
||||
* [iso-week](https://www.npmjs.com/package/iso-week): Get the ISO week of the year. | [homepage](https://github.com/jonschlinkert/iso-week "Get the ISO week of the year.")
|
||||
* [month](https://www.npmjs.com/package/month): Get the name or number of the current month or any month of the year. | [homepage](https://github.com/datetime/month "Get the name or number of the current month or any month of the year.")
|
||||
* [months](https://www.npmjs.com/package/months): Months of the year. | [homepage](https://github.com/datetime/months "Months of the year.")
|
||||
* [o-clock](https://www.npmjs.com/package/o-clock): Simple javascript utility for displaying the time in 12-hour clock format. | [homepage](https://github.com/jonschlinkert/o-clock "Simple javascript utility for displaying the time in 12-hour clock format.")
|
||||
* [seconds](https://www.npmjs.com/package/seconds): Get the number of seconds for a minute, hour, day and week. | [homepage](https://github.com/jonschlinkert/seconds "Get the number of seconds for a minute, hour, day and week.")
|
||||
* [week](https://www.npmjs.com/package/week): Get the current week number. | [homepage](https://github.com/datetime/week "Get the current week number.")
|
||||
* [weekday](https://www.npmjs.com/package/weekday): Get the name and number of the current weekday. Or get the name of the… [more](https://github.com/datetime/weekday) | [homepage](https://github.com/datetime/weekday "Get the name and number of the current weekday. Or get the name of the weekday for a given number.")
|
||||
* [year](https://www.npmjs.com/package/year): Simple utility to get the current year with 2 or 4 digits. | [homepage](https://github.com/jonschlinkert/year "Simple utility to get the current year with 2 or 4 digits.")
|
||||
|
||||
### Contributors
|
||||
|
||||
| **Commits** | **Contributor** |
|
||||
| --- | --- |
|
||||
| 31 | [jonschlinkert](https://github.com/jonschlinkert) |
|
||||
| 7 | [doowb](https://github.com/doowb) |
|
||||
| 1 | [evocateur](https://github.com/evocateur) |
|
||||
| 1 | [mendenhallmagic](https://github.com/mendenhallmagic) |
|
||||
| 1 | [mvanroon](https://github.com/mvanroon) |
|
||||
| 1 | [leesei](https://github.com/leesei) |
|
||||
| 1 | [sleagon](https://github.com/sleagon) |
|
||||
|
||||
### Author
|
||||
|
||||
**Jon Schlinkert**
|
||||
|
||||
* [GitHub Profile](https://github.com/jonschlinkert)
|
||||
* [Twitter Profile](https://twitter.com/jonschlinkert)
|
||||
* [LinkedIn Profile](https://linkedin.com/in/jonschlinkert)
|
||||
|
||||
### License
|
||||
|
||||
Copyright © 2018, [Jon Schlinkert](https://github.com/jonschlinkert).
|
||||
Released under the [MIT License](LICENSE).
|
||||
|
||||
***
|
||||
|
||||
_This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.8.0, on October 26, 2018._
|
||||
5
hGameTest/node_modules/time-stamp/index.d.ts
generated
vendored
Normal file
5
hGameTest/node_modules/time-stamp/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
declare function timestamp(pattern?: string | Date, date?: Date): string
|
||||
declare function timestampUTC(pattern?: string | Date, date?: Date): string
|
||||
|
||||
export default timestamp
|
||||
export { timestampUTC as utc };
|
||||
43
hGameTest/node_modules/time-stamp/index.js
generated
vendored
Normal file
43
hGameTest/node_modules/time-stamp/index.js
generated
vendored
Normal file
@@ -0,0 +1,43 @@
|
||||
/*!
|
||||
* time-stamp <https://github.com/jonschlinkert/time-stamp>
|
||||
*
|
||||
* Copyright (c) 2015-2018, Jon Schlinkert.
|
||||
* Released under the MIT License.
|
||||
*/
|
||||
|
||||
'use strict';
|
||||
|
||||
var dateRegex = /(?=(YYYY|YY|MM|DD|HH|mm|ss|ms))\1([:\/]*)/g;
|
||||
var timespan = {
|
||||
YYYY: ['getFullYear', 4],
|
||||
YY: ['getFullYear', 2],
|
||||
MM: ['getMonth', 2, 1], // getMonth is zero-based, thus the extra increment field
|
||||
DD: ['getDate', 2],
|
||||
HH: ['getHours', 2],
|
||||
mm: ['getMinutes', 2],
|
||||
ss: ['getSeconds', 2],
|
||||
ms: ['getMilliseconds', 3]
|
||||
};
|
||||
|
||||
var timestamp = function(str, date, utc) {
|
||||
if (typeof str !== 'string') {
|
||||
date = str;
|
||||
str = 'YYYY-MM-DD';
|
||||
}
|
||||
|
||||
if (!date) date = new Date();
|
||||
return str.replace(dateRegex, function(match, key, rest) {
|
||||
var args = timespan[key];
|
||||
var name = args[0];
|
||||
var chars = args[1];
|
||||
if (utc === true) name = 'getUTC' + name.slice(3);
|
||||
var val = '00' + String(date[name]() + (args[2] || 0));
|
||||
return val.slice(-chars) + (rest || '');
|
||||
});
|
||||
};
|
||||
|
||||
timestamp.utc = function(str, date) {
|
||||
return timestamp(str, date, true);
|
||||
};
|
||||
|
||||
module.exports = timestamp;
|
||||
120
hGameTest/node_modules/time-stamp/package.json
generated
vendored
Normal file
120
hGameTest/node_modules/time-stamp/package.json
generated
vendored
Normal file
@@ -0,0 +1,120 @@
|
||||
{
|
||||
"_from": "time-stamp@^2.0.0",
|
||||
"_id": "time-stamp@2.2.0",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-zxke8goJQpBeEgD82CXABeMh0LSJcj7CXEd0OHOg45HgcofF7pxNwZm9+RknpxpDhwN4gFpySkApKfFYfRQnUA==",
|
||||
"_location": "/time-stamp",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "range",
|
||||
"registry": true,
|
||||
"raw": "time-stamp@^2.0.0",
|
||||
"name": "time-stamp",
|
||||
"escapedName": "time-stamp",
|
||||
"rawSpec": "^2.0.0",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "^2.0.0"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/webpack-dev-middleware"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/time-stamp/-/time-stamp-2.2.0.tgz",
|
||||
"_shasum": "917e0a66905688790ec7bbbde04046259af83f57",
|
||||
"_spec": "time-stamp@^2.0.0",
|
||||
"_where": "/home/andreas/Documents/Projects/haxe/openfl/nigger/node_modules/webpack-dev-middleware",
|
||||
"author": {
|
||||
"name": "Jon Schlinkert",
|
||||
"url": "https://github.com/jonschlinkert"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/jonschlinkert/time-stamp/issues"
|
||||
},
|
||||
"bundleDependencies": false,
|
||||
"contributors": [
|
||||
{
|
||||
"name": "Daniel Stockman",
|
||||
"url": "http://evocateur.org"
|
||||
},
|
||||
{
|
||||
"name": "Drew",
|
||||
"url": "https://github.com/mendenhallmagic"
|
||||
},
|
||||
{
|
||||
"name": "Jon Schlinkert",
|
||||
"url": "http://twitter.com/jonschlinkert"
|
||||
},
|
||||
{
|
||||
"name": "leesei",
|
||||
"url": "https://leesei.github.io"
|
||||
}
|
||||
],
|
||||
"deprecated": false,
|
||||
"description": "Get a formatted timestamp.",
|
||||
"devDependencies": {
|
||||
"gulp-format-md": "^1.0.0",
|
||||
"mocha": "^5.2.0",
|
||||
"pad-left": "^2.1.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=0.10.0"
|
||||
},
|
||||
"files": [
|
||||
"index.js",
|
||||
"index.d.ts"
|
||||
],
|
||||
"homepage": "https://github.com/jonschlinkert/time-stamp",
|
||||
"keywords": [
|
||||
"console",
|
||||
"date",
|
||||
"format",
|
||||
"formatting",
|
||||
"log",
|
||||
"pretty",
|
||||
"stamp",
|
||||
"terminal",
|
||||
"time",
|
||||
"time-stamp"
|
||||
],
|
||||
"license": "MIT",
|
||||
"main": "index.js",
|
||||
"name": "time-stamp",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/jonschlinkert/time-stamp.git"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "mocha"
|
||||
},
|
||||
"types": "index.d.ts",
|
||||
"verb": {
|
||||
"run": true,
|
||||
"toc": true,
|
||||
"layout": "default",
|
||||
"tasks": [
|
||||
"readme"
|
||||
],
|
||||
"helpers": [
|
||||
"./helpers.js"
|
||||
],
|
||||
"plugins": [
|
||||
"gulp-format-md"
|
||||
],
|
||||
"related": {
|
||||
"list": [
|
||||
"days",
|
||||
"iso-week",
|
||||
"month",
|
||||
"months",
|
||||
"o-clock",
|
||||
"seconds",
|
||||
"week",
|
||||
"weekday",
|
||||
"year"
|
||||
]
|
||||
},
|
||||
"lint": {
|
||||
"reflinks": true
|
||||
}
|
||||
},
|
||||
"version": "2.2.0"
|
||||
}
|
||||
Reference in New Issue
Block a user