mirror of
https://github.com/viq/NewsBlur.git
synced 2025-04-13 09:38:09 +00:00
Adding additional nodejs dependencies.
This commit is contained in:
parent
2ab4504390
commit
b6a906b336
603 changed files with 101994 additions and 12 deletions
1
node/node_modules/.bin/node-gyp-build
generated
vendored
Symbolic link
1
node/node_modules/.bin/node-gyp-build
generated
vendored
Symbolic link
|
@ -0,0 +1 @@
|
|||
../node-gyp-build/bin.js
|
1
node/node_modules/.bin/node-gyp-build-optional
generated
vendored
Symbolic link
1
node/node_modules/.bin/node-gyp-build-optional
generated
vendored
Symbolic link
|
@ -0,0 +1 @@
|
|||
../node-gyp-build/optional.js
|
1
node/node_modules/.bin/node-gyp-build-test
generated
vendored
Symbolic link
1
node/node_modules/.bin/node-gyp-build-test
generated
vendored
Symbolic link
|
@ -0,0 +1 @@
|
|||
../node-gyp-build/build-test.js
|
21
node/node_modules/bufferutil/LICENSE
generated
vendored
Normal file
21
node/node_modules/bufferutil/LICENSE
generated
vendored
Normal file
|
@ -0,0 +1,21 @@
|
|||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2011 Einar Otto Stangvik <einaros@gmail.com> (http://2x.io)
|
||||
|
||||
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.
|
78
node/node_modules/bufferutil/README.md
generated
vendored
Normal file
78
node/node_modules/bufferutil/README.md
generated
vendored
Normal file
|
@ -0,0 +1,78 @@
|
|||
# bufferutil
|
||||
|
||||
[](https://www.npmjs.com/package/bufferutil)
|
||||
[](https://travis-ci.org/websockets/bufferutil)
|
||||
[](https://ci.appveyor.com/project/lpinca/bufferutil)
|
||||
|
||||
`bufferutil` is what makes `ws` fast. It provides some utilities to efficiently
|
||||
perform some operations such as masking and unmasking the data payload of
|
||||
WebSocket frames.
|
||||
|
||||
## Installation
|
||||
|
||||
```
|
||||
npm install bufferutil --save-optional
|
||||
```
|
||||
|
||||
The `--save-optional` flag tells npm to save the package in your package.json
|
||||
under the [`optionalDependencies`](https://docs.npmjs.com/files/package.json#optionaldependencies)
|
||||
key.
|
||||
|
||||
## API
|
||||
|
||||
The module exports two functions.
|
||||
|
||||
### `bufferUtil.mask(source, mask, output, offset, length)`
|
||||
|
||||
Masks a buffer using the given masking-key as specified by the WebSocket
|
||||
protocol.
|
||||
|
||||
#### Arguments
|
||||
|
||||
- `source` - The buffer to mask.
|
||||
- `mask` - A buffer representing the masking-key.
|
||||
- `output` - The buffer where to store the result.
|
||||
- `offset` - The offset at which to start writing.
|
||||
- `length` - The number of bytes to mask.
|
||||
|
||||
#### Example
|
||||
|
||||
```js
|
||||
'use strict';
|
||||
|
||||
const bufferUtil = require('bufferutil');
|
||||
const crypto = require('crypto');
|
||||
|
||||
const source = crypto.randomBytes(10);
|
||||
const mask = crypto.randomBytes(4);
|
||||
|
||||
bufferUtil.mask(source, mask, source, 0, source.length);
|
||||
```
|
||||
|
||||
### `bufferUtil.unmask(buffer, mask)`
|
||||
|
||||
Unmasks a buffer using the given masking-key as specified by the WebSocket
|
||||
protocol.
|
||||
|
||||
#### Arguments
|
||||
|
||||
- `buffer` - The buffer to unmask.
|
||||
- `mask` - A buffer representing the masking-key.
|
||||
|
||||
#### Example
|
||||
|
||||
```js
|
||||
'use strict';
|
||||
|
||||
const bufferUtil = require('bufferutil');
|
||||
const crypto = require('crypto');
|
||||
|
||||
const buffer = crypto.randomBytes(10);
|
||||
const mask = crypto.randomBytes(4);
|
||||
|
||||
bufferUtil.unmask(buffer, mask);
|
||||
```
|
||||
|
||||
## License
|
||||
|
||||
[MIT](LICENSE)
|
9
node/node_modules/bufferutil/binding.gyp
generated
vendored
Normal file
9
node/node_modules/bufferutil/binding.gyp
generated
vendored
Normal file
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
'targets': [
|
||||
{
|
||||
'target_name': 'bufferutil',
|
||||
'sources': ['src/bufferutil.c'],
|
||||
'cflags': ['-std=c99']
|
||||
}
|
||||
]
|
||||
}
|
34
node/node_modules/bufferutil/fallback.js
generated
vendored
Normal file
34
node/node_modules/bufferutil/fallback.js
generated
vendored
Normal file
|
@ -0,0 +1,34 @@
|
|||
'use strict';
|
||||
|
||||
/**
|
||||
* Masks a buffer using the given mask.
|
||||
*
|
||||
* @param {Buffer} source The buffer to mask
|
||||
* @param {Buffer} mask The mask to use
|
||||
* @param {Buffer} output The buffer where to store the result
|
||||
* @param {Number} offset The offset at which to start writing
|
||||
* @param {Number} length The number of bytes to mask.
|
||||
* @public
|
||||
*/
|
||||
const mask = (source, mask, output, offset, length) => {
|
||||
for (var i = 0; i < length; i++) {
|
||||
output[offset + i] = source[i] ^ mask[i & 3];
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* Unmasks a buffer using the given mask.
|
||||
*
|
||||
* @param {Buffer} buffer The buffer to unmask
|
||||
* @param {Buffer} mask The mask to use
|
||||
* @public
|
||||
*/
|
||||
const unmask = (buffer, mask) => {
|
||||
// Required until https://github.com/nodejs/node/issues/9006 is resolved.
|
||||
const length = buffer.length;
|
||||
for (var i = 0; i < length; i++) {
|
||||
buffer[i] ^= mask[i & 3];
|
||||
}
|
||||
};
|
||||
|
||||
module.exports = { mask, unmask };
|
7
node/node_modules/bufferutil/index.js
generated
vendored
Normal file
7
node/node_modules/bufferutil/index.js
generated
vendored
Normal file
|
@ -0,0 +1,7 @@
|
|||
'use strict';
|
||||
|
||||
try {
|
||||
module.exports = require('node-gyp-build')(__dirname);
|
||||
} catch (e) {
|
||||
module.exports = require('./fallback');
|
||||
}
|
60
node/node_modules/bufferutil/package.json
generated
vendored
Normal file
60
node/node_modules/bufferutil/package.json
generated
vendored
Normal file
|
@ -0,0 +1,60 @@
|
|||
{
|
||||
"_from": "bufferutil@^4.0.1",
|
||||
"_id": "bufferutil@4.0.1",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-xowrxvpxojqkagPcWRQVXZl0YXhRhAtBEIq3VoER1NH5Mw1n1o0ojdspp+GS2J//2gCVyrzQDApQ4unGF+QOoA==",
|
||||
"_location": "/bufferutil",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "range",
|
||||
"registry": true,
|
||||
"raw": "bufferutil@^4.0.1",
|
||||
"name": "bufferutil",
|
||||
"escapedName": "bufferutil",
|
||||
"rawSpec": "^4.0.1",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "^4.0.1"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/bufferutil/-/bufferutil-4.0.1.tgz",
|
||||
"_shasum": "3a177e8e5819a1243fe16b63a199951a7ad8d4a7",
|
||||
"_spec": "bufferutil@^4.0.1",
|
||||
"_where": "/Users/sclay/projects/newsblur/node",
|
||||
"author": {
|
||||
"name": "Einar Otto Stangvik",
|
||||
"email": "einaros@gmail.com",
|
||||
"url": "http://2x.io"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/websockets/bufferutil/issues"
|
||||
},
|
||||
"bundleDependencies": false,
|
||||
"dependencies": {
|
||||
"node-gyp-build": "~3.7.0"
|
||||
},
|
||||
"deprecated": false,
|
||||
"description": "WebSocket buffer utils",
|
||||
"devDependencies": {
|
||||
"mocha": "~5.2.0",
|
||||
"prebuildify": "~2.10.0"
|
||||
},
|
||||
"homepage": "https://github.com/websockets/bufferutil",
|
||||
"keywords": [
|
||||
"bufferutil"
|
||||
],
|
||||
"license": "MIT",
|
||||
"main": "index.js",
|
||||
"name": "bufferutil",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/websockets/bufferutil.git"
|
||||
},
|
||||
"scripts": {
|
||||
"install": "node-gyp-build",
|
||||
"prebuild": "prebuildify --napi",
|
||||
"test": "mocha"
|
||||
},
|
||||
"version": "4.0.1"
|
||||
}
|
BIN
node/node_modules/bufferutil/prebuilds/darwin-x64/electron-napi.node
generated
vendored
Executable file
BIN
node/node_modules/bufferutil/prebuilds/darwin-x64/electron-napi.node
generated
vendored
Executable file
Binary file not shown.
BIN
node/node_modules/bufferutil/prebuilds/darwin-x64/node-napi.node
generated
vendored
Executable file
BIN
node/node_modules/bufferutil/prebuilds/darwin-x64/node-napi.node
generated
vendored
Executable file
Binary file not shown.
BIN
node/node_modules/bufferutil/prebuilds/linux-x64/electron-napi.node
generated
vendored
Executable file
BIN
node/node_modules/bufferutil/prebuilds/linux-x64/electron-napi.node
generated
vendored
Executable file
Binary file not shown.
BIN
node/node_modules/bufferutil/prebuilds/linux-x64/node-napi.node
generated
vendored
Executable file
BIN
node/node_modules/bufferutil/prebuilds/linux-x64/node-napi.node
generated
vendored
Executable file
Binary file not shown.
BIN
node/node_modules/bufferutil/prebuilds/win32-ia32/electron-napi.node
generated
vendored
Normal file
BIN
node/node_modules/bufferutil/prebuilds/win32-ia32/electron-napi.node
generated
vendored
Normal file
Binary file not shown.
BIN
node/node_modules/bufferutil/prebuilds/win32-ia32/node-napi.node
generated
vendored
Normal file
BIN
node/node_modules/bufferutil/prebuilds/win32-ia32/node-napi.node
generated
vendored
Normal file
Binary file not shown.
BIN
node/node_modules/bufferutil/prebuilds/win32-x64/electron-napi.node
generated
vendored
Normal file
BIN
node/node_modules/bufferutil/prebuilds/win32-x64/electron-napi.node
generated
vendored
Normal file
Binary file not shown.
BIN
node/node_modules/bufferutil/prebuilds/win32-x64/node-napi.node
generated
vendored
Normal file
BIN
node/node_modules/bufferutil/prebuilds/win32-x64/node-napi.node
generated
vendored
Normal file
Binary file not shown.
171
node/node_modules/bufferutil/src/bufferutil.c
generated
vendored
Normal file
171
node/node_modules/bufferutil/src/bufferutil.c
generated
vendored
Normal file
|
@ -0,0 +1,171 @@
|
|||
#define NAPI_VERSION 1
|
||||
#include <assert.h>
|
||||
#include <node_api.h>
|
||||
|
||||
napi_value Mask(napi_env env, napi_callback_info info) {
|
||||
napi_status status;
|
||||
size_t argc = 5;
|
||||
napi_value argv[5];
|
||||
|
||||
status = napi_get_cb_info(env, info, &argc, argv, NULL, NULL);
|
||||
assert(status == napi_ok);
|
||||
|
||||
uint8_t *source;
|
||||
uint8_t *mask;
|
||||
uint8_t *destination;
|
||||
uint32_t offset;
|
||||
uint32_t length;
|
||||
|
||||
status = napi_get_buffer_info(env, argv[0], (void **)&source, NULL);
|
||||
assert(status == napi_ok);
|
||||
|
||||
status = napi_get_buffer_info(env, argv[1], (void **)&mask, NULL);
|
||||
assert(status == napi_ok);
|
||||
|
||||
status = napi_get_buffer_info(env, argv[2], (void **)&destination, NULL);
|
||||
assert(status == napi_ok);
|
||||
|
||||
status = napi_get_value_uint32(env, argv[3], &offset);
|
||||
assert(status == napi_ok);
|
||||
|
||||
status = napi_get_value_uint32(env, argv[4], &length);
|
||||
assert(status == napi_ok);
|
||||
|
||||
destination += offset;
|
||||
uint32_t index = 0;
|
||||
|
||||
//
|
||||
// Alignment preamble.
|
||||
//
|
||||
while (index < length && ((size_t)source % 8)) {
|
||||
*destination++ = *source++ ^ mask[index % 4];
|
||||
index++;
|
||||
}
|
||||
|
||||
length -= index;
|
||||
if (!length)
|
||||
return NULL;
|
||||
|
||||
//
|
||||
// Realign mask and convert to 64 bit.
|
||||
//
|
||||
uint8_t maskAlignedArray[8];
|
||||
|
||||
for (uint8_t i = 0; i < 8; i++, index++) {
|
||||
maskAlignedArray[i] = mask[index % 4];
|
||||
}
|
||||
|
||||
//
|
||||
// Apply 64 bit mask in 8 byte chunks.
|
||||
//
|
||||
uint32_t loop = length / 8;
|
||||
uint64_t *pMask8 = (uint64_t *)maskAlignedArray;
|
||||
|
||||
while (loop--) {
|
||||
uint64_t *pFrom8 = (uint64_t *)source;
|
||||
uint64_t *pTo8 = (uint64_t *)destination;
|
||||
*pTo8 = *pFrom8 ^ *pMask8;
|
||||
source += 8;
|
||||
destination += 8;
|
||||
}
|
||||
|
||||
//
|
||||
// Apply mask to remaining data.
|
||||
//
|
||||
uint8_t *pmaskAlignedArray = maskAlignedArray;
|
||||
|
||||
length %= 8;
|
||||
while (length--) {
|
||||
*destination++ = *source++ ^ *pmaskAlignedArray++;
|
||||
}
|
||||
|
||||
return NULL;
|
||||
}
|
||||
|
||||
napi_value Unmask(napi_env env, napi_callback_info info) {
|
||||
napi_status status;
|
||||
size_t argc = 2;
|
||||
napi_value argv[2];
|
||||
|
||||
status = napi_get_cb_info(env, info, &argc, argv, NULL, NULL);
|
||||
assert(status == napi_ok);
|
||||
|
||||
uint8_t *source;
|
||||
size_t length;
|
||||
uint8_t *mask;
|
||||
|
||||
status = napi_get_buffer_info(env, argv[0], (void **)&source, &length);
|
||||
assert(status == napi_ok);
|
||||
|
||||
status = napi_get_buffer_info(env, argv[1], (void **)&mask, NULL);
|
||||
assert(status == napi_ok);
|
||||
|
||||
uint32_t index = 0;
|
||||
|
||||
//
|
||||
// Alignment preamble.
|
||||
//
|
||||
while (index < length && ((size_t)source % 8)) {
|
||||
*source++ ^= mask[index % 4];
|
||||
index++;
|
||||
}
|
||||
|
||||
length -= index;
|
||||
if (!length)
|
||||
return NULL;
|
||||
|
||||
//
|
||||
// Realign mask and convert to 64 bit.
|
||||
//
|
||||
uint8_t maskAlignedArray[8];
|
||||
|
||||
for (uint8_t i = 0; i < 8; i++, index++) {
|
||||
maskAlignedArray[i] = mask[index % 4];
|
||||
}
|
||||
|
||||
//
|
||||
// Apply 64 bit mask in 8 byte chunks.
|
||||
//
|
||||
uint32_t loop = length / 8;
|
||||
uint64_t *pMask8 = (uint64_t *)maskAlignedArray;
|
||||
|
||||
while (loop--) {
|
||||
uint64_t *pSource8 = (uint64_t *)source;
|
||||
*pSource8 ^= *pMask8;
|
||||
source += 8;
|
||||
}
|
||||
|
||||
//
|
||||
// Apply mask to remaining data.
|
||||
//
|
||||
uint8_t *pmaskAlignedArray = maskAlignedArray;
|
||||
|
||||
length %= 8;
|
||||
while (length--) {
|
||||
*source++ ^= *pmaskAlignedArray++;
|
||||
}
|
||||
|
||||
return NULL;
|
||||
}
|
||||
|
||||
napi_value Init(napi_env env, napi_value exports) {
|
||||
napi_status status;
|
||||
napi_value mask;
|
||||
napi_value unmask;
|
||||
|
||||
status = napi_create_function(env, NULL, 0, Mask, NULL, &mask);
|
||||
assert(status == napi_ok);
|
||||
|
||||
status = napi_create_function(env, NULL, 0, Unmask, NULL, &unmask);
|
||||
assert(status == napi_ok);
|
||||
|
||||
status = napi_set_named_property(env, exports, "mask", mask);
|
||||
assert(status == napi_ok);
|
||||
|
||||
status = napi_set_named_property(env, exports, "unmask", unmask);
|
||||
assert(status == napi_ok);
|
||||
|
||||
return exports;
|
||||
}
|
||||
|
||||
NAPI_MODULE(NODE_GYP_MODULE_NAME, Init)
|
1
node/node_modules/cjs/README.md
generated
vendored
Normal file
1
node/node_modules/cjs/README.md
generated
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
#Concurrent Javascript#
|
277
node/node_modules/cjs/cjs.js
generated
vendored
Normal file
277
node/node_modules/cjs/cjs.js
generated
vendored
Normal file
|
@ -0,0 +1,277 @@
|
|||
var Channel = require("sync-channel");
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
// Channel
|
||||
|
||||
Channel.prototype.readEvent = function () {
|
||||
var channel = this;
|
||||
return new Event(function (baseEvents, wrapFunction, abortChannel, cont) {
|
||||
var baseEvent = new ReadEvent(channel, wrapFunction);
|
||||
baseEvents.push(baseEvent);
|
||||
cont(null);
|
||||
});
|
||||
};
|
||||
|
||||
Channel.prototype.writeEvent = function (value) {
|
||||
var channel = this;
|
||||
return new Event(function (baseEvents, wrapFunction, abortChannel, cont) {
|
||||
var baseEvent = new WriteEvent(channel, wrapFunction, value);
|
||||
baseEvents.push(baseEvent);
|
||||
cont(null);
|
||||
});
|
||||
};
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
// ReadEvent
|
||||
|
||||
function ReadEvent(channel, wrapFunction) {
|
||||
this.channel = channel;
|
||||
this.wrapFunction = wrapFunction;
|
||||
}
|
||||
|
||||
ReadEvent.prototype.poll = function () {
|
||||
return this.channel.tryRead();
|
||||
};
|
||||
|
||||
ReadEvent.prototype.wait = function (cont) {
|
||||
return this.channel.read(cont);
|
||||
};
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
// WriteEvent
|
||||
|
||||
function WriteEvent(channel, wrapFunction, value) {
|
||||
this.channel = channel;
|
||||
this.wrapFunction = wrapFunction;
|
||||
this.value = value;
|
||||
};
|
||||
|
||||
WriteEvent.prototype.poll = function () {
|
||||
return this.channel.tryWrite(this.value) ? { value: null } : null;
|
||||
};
|
||||
|
||||
WriteEvent.prototype.wait = function (cont) {
|
||||
return this.channel.write(this.value, cont);
|
||||
};
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
// Event
|
||||
|
||||
function Event(prepare) {
|
||||
this.prepare = prepare;
|
||||
}
|
||||
|
||||
Event.prototype.wrap = function (f) {
|
||||
return wrap(this, f);
|
||||
};
|
||||
|
||||
Event.prototype.wrapAbort = function (f) {
|
||||
return wrapAbort(this, f);
|
||||
};
|
||||
|
||||
Event.prototype.or = function (event) {
|
||||
return chooseBinary(this, event);
|
||||
};
|
||||
|
||||
Event.prototype.sync = function (cont) {
|
||||
return sync(this, cont);
|
||||
};
|
||||
|
||||
Event.prototype.timeout = function (ms) {
|
||||
return timeout(this, ms);
|
||||
};
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
// always/never
|
||||
|
||||
function always(value) {
|
||||
var channel = new Channel();
|
||||
(function loop() {
|
||||
channel.write(value, loop);
|
||||
}());
|
||||
return channel.readEvent();
|
||||
}
|
||||
|
||||
function never() {
|
||||
return new Channel().readEvent();
|
||||
}
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
// timeout
|
||||
|
||||
function timeout(event, ms) {
|
||||
return guard(function (cont) {
|
||||
var channel = new Channel();
|
||||
var timeout = setTimeout(function () {
|
||||
channel.writeEvent(true).sync(function () {
|
||||
});
|
||||
}, ms);
|
||||
cont(null, choose([
|
||||
event.wrap(function (value, cont) {
|
||||
clearTimeout(timeout);
|
||||
cont(null, { value: value });
|
||||
}),
|
||||
channel.readEvent().wrap(function (value, cont) {
|
||||
cont(null, { timeout: true });
|
||||
})
|
||||
]).wrapAbort(function () {
|
||||
clearTimeout(timeout);
|
||||
}));
|
||||
});
|
||||
}
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
// operators
|
||||
|
||||
function guard(f) {
|
||||
return new Event(function (baseEvents, wrapFunction, abortChannel, cont) {
|
||||
f(function (error, event) {
|
||||
if (error) {
|
||||
cont(error);
|
||||
} else {
|
||||
event.prepare(baseEvents, wrapFunction, abortChannel, cont);
|
||||
}
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
function wrap(event, f) {
|
||||
return new Event(function (baseEvents, wrapFunction, abortChannel, cont) {
|
||||
event.prepare(baseEvents, function (value, cont) {
|
||||
wrapFunction(value, function (error, value) {
|
||||
if (error) {
|
||||
cont(error);
|
||||
} else {
|
||||
f(value, cont);
|
||||
}
|
||||
})
|
||||
}, abortChannel, cont);
|
||||
});
|
||||
}
|
||||
|
||||
function wrapAbort(event, f) {
|
||||
return new Event(function (baseEvents, wrapFunction, abortChannel, cont) {
|
||||
var index = baseEvents.length;
|
||||
event.prepare(baseEvents, wrapFunction, abortChannel, function (error) {
|
||||
if (error) {
|
||||
cont(error);
|
||||
} else {
|
||||
var childBaseEvents = baseEvents.slice(index);
|
||||
abortChannel.read(function (baseEvent) {
|
||||
if (childBaseEvents.indexOf(baseEvent) === -1) {
|
||||
f();
|
||||
}
|
||||
});
|
||||
cont(null);
|
||||
}
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
function chooseBinary(e1, e2) {
|
||||
return new Event(function (baseEvents, wrapFunction, abortChannel, cont) {
|
||||
e1.prepare(baseEvents, wrapFunction, abortChannel, function (error) {
|
||||
if (error) {
|
||||
cont(error);
|
||||
} else {
|
||||
e2.prepare(baseEvents, wrapFunction, abortChannel, cont);
|
||||
}
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
function choose(events) {
|
||||
return events.reduce(chooseBinary);
|
||||
}
|
||||
|
||||
function select(events, cont) {
|
||||
sync(choose(events), cont);
|
||||
}
|
||||
|
||||
function range(a, b) {
|
||||
var l = [];
|
||||
for (var i = a; i <= b; i++) l.push(i);
|
||||
return l;
|
||||
}
|
||||
|
||||
function randomize(l) {
|
||||
for (var i = 0; i < l.length; i++) {
|
||||
var j = Math.floor(Math.random() * (i + 1));
|
||||
var t = l[i];
|
||||
l[i] = l[j];
|
||||
l[j] = t;
|
||||
}
|
||||
}
|
||||
|
||||
function sync(event, cont) {
|
||||
cont = cont || function () {
|
||||
};
|
||||
var baseEvents = [];
|
||||
var wrapFunction = function (value, cont) {
|
||||
cont(null, value);
|
||||
};
|
||||
var abortChannel = new Channel();
|
||||
function ret(baseEvent, value) {
|
||||
baseEvent.wrapFunction(value, cont);
|
||||
(function spawnAbortFunction() {
|
||||
abortChannel.write(baseEvent, spawnAbortFunction);
|
||||
}());
|
||||
}
|
||||
function pollBaseEvents() {
|
||||
(function loop(n) {
|
||||
if(n === baseEvents.length) {
|
||||
waitBaseEvents();
|
||||
} else {
|
||||
var baseEvent = baseEvents[n];
|
||||
var result = baseEvent.poll();
|
||||
if(result !== null) {
|
||||
ret(baseEvent, result.value);
|
||||
} else {
|
||||
setImmediate(function() { loop(n + 1); });
|
||||
}
|
||||
}
|
||||
})(0);
|
||||
}
|
||||
function waitBaseEvents() {
|
||||
var cancelFunctions = [];
|
||||
var done = false;
|
||||
(function loop(n) {
|
||||
if(!done && n !== baseEvents.length) {
|
||||
var baseEvent = baseEvents[n];
|
||||
var cancelFunction = baseEvent.wait(function (value) {
|
||||
cancelFunctions.forEach(function (cancelFunction) {
|
||||
cancelFunction();
|
||||
});
|
||||
done = true;
|
||||
ret(baseEvent, value);
|
||||
});
|
||||
cancelFunctions.push(cancelFunction);
|
||||
setImmediate(function() { loop(n + 1); });
|
||||
}
|
||||
})(0);
|
||||
}
|
||||
event.prepare(baseEvents, wrapFunction, abortChannel, function (error) {
|
||||
if (error) return cont(error);
|
||||
randomize(baseEvents);
|
||||
pollBaseEvents();
|
||||
});
|
||||
}
|
||||
|
||||
function newChannel() {
|
||||
return new Channel();
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
Channel: Channel,
|
||||
newChannel: newChannel,
|
||||
guard: guard,
|
||||
wrap: wrap,
|
||||
wrapAbort: wrapAbort,
|
||||
chooseBinary: chooseBinary,
|
||||
choose: choose,
|
||||
select: select,
|
||||
sync: sync,
|
||||
timeout: timeout,
|
||||
never: never,
|
||||
always: always
|
||||
};
|
300
node/node_modules/cjs/cjs.js~
generated
vendored
Normal file
300
node/node_modules/cjs/cjs.js~
generated
vendored
Normal file
|
@ -0,0 +1,300 @@
|
|||
var Channel = require("sync-channel");
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
// Channel
|
||||
|
||||
Channel.prototype.readEvent = function () {
|
||||
var channel = this;
|
||||
return new Event(function (baseEvents, wrapFunction, abortChannel, cont) {
|
||||
var baseEvent = new ReadEvent(channel, wrapFunction);
|
||||
baseEvents.push(baseEvent);
|
||||
cont(null);
|
||||
});
|
||||
};
|
||||
|
||||
Channel.prototype.writeEvent = function (value) {
|
||||
var channel = this;
|
||||
return new Event(function (baseEvents, wrapFunction, abortChannel, cont) {
|
||||
var baseEvent = new WriteEvent(channel, wrapFunction, value);
|
||||
baseEvents.push(baseEvent);
|
||||
cont(null);
|
||||
});
|
||||
};
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
// ReadEvent
|
||||
|
||||
function ReadEvent(channel, wrapFunction) {
|
||||
this.channel = channel;
|
||||
this.wrapFunction = wrapFunction;
|
||||
}
|
||||
|
||||
ReadEvent.prototype.poll = function () {
|
||||
return this.channel.tryRead();
|
||||
};
|
||||
|
||||
ReadEvent.prototype.wait = function (cont) {
|
||||
return this.channel.read(cont);
|
||||
};
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
// WriteEvent
|
||||
|
||||
function WriteEvent(channel, wrapFunction, value) {
|
||||
this.channel = channel;
|
||||
this.wrapFunction = wrapFunction;
|
||||
this.value = value;
|
||||
};
|
||||
|
||||
WriteEvent.prototype.poll = function () {
|
||||
return this.channel.tryWrite(this.value) ? { value: null } : null;
|
||||
};
|
||||
|
||||
WriteEvent.prototype.wait = function (cont) {
|
||||
return this.channel.write(this.value, cont);
|
||||
};
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
// Event
|
||||
|
||||
function Event(prepare) {
|
||||
this.prepare = prepare;
|
||||
}
|
||||
|
||||
Event.prototype.wrap = function (f) {
|
||||
return wrap(this, f);
|
||||
};
|
||||
|
||||
Event.prototype.wrapAbort = function (f) {
|
||||
return wrapAbort(this, f);
|
||||
};
|
||||
|
||||
Event.prototype.or = function (event) {
|
||||
return chooseBinary(this, event);
|
||||
};
|
||||
|
||||
Event.prototype.sync = function (cont) {
|
||||
return sync(this, cont);
|
||||
};
|
||||
|
||||
Event.prototype.timeout = function (ms) {
|
||||
return timeout(this, ms);
|
||||
};
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
// always/never
|
||||
|
||||
function always(value) {
|
||||
var channel = new Channel();
|
||||
(function loop() {
|
||||
channel.write(value, loop);
|
||||
}());
|
||||
return channel.readEvent();
|
||||
}
|
||||
|
||||
function never() {
|
||||
return new Channel().readEvent();
|
||||
}
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
// timeout
|
||||
|
||||
function timeout(event, ms) {
|
||||
return guard(function (cont) {
|
||||
var channel = new Channel();
|
||||
var timeout = setTimeout(function () {
|
||||
channel.writeEvent(true).sync(function () {
|
||||
});
|
||||
}, ms);
|
||||
cont(null, choose([
|
||||
event.wrap(function (value, cont) {
|
||||
clearTimeout(timeout);
|
||||
cont(null, { value: value });
|
||||
}),
|
||||
channel.readEvent().wrap(function (value, cont) {
|
||||
cont(null, { timeout: true });
|
||||
})
|
||||
]).wrapAbort(function () {
|
||||
clearTimeout(timeout);
|
||||
}));
|
||||
});
|
||||
}
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
// operators
|
||||
|
||||
function guard(f) {
|
||||
return new Event(function (baseEvents, wrapFunction, abortChannel, cont) {
|
||||
f(function (error, event) {
|
||||
if (error) {
|
||||
cont(error);
|
||||
} else {
|
||||
event.prepare(baseEvents, wrapFunction, abortChannel, cont);
|
||||
}
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
function wrap(event, f) {
|
||||
return new Event(function (baseEvents, wrapFunction, abortChannel, cont) {
|
||||
event.prepare(baseEvents, function (value, cont) {
|
||||
wrapFunction(value, function (error, value) {
|
||||
if (error) {
|
||||
cont(error);
|
||||
} else {
|
||||
f(value, cont);
|
||||
}
|
||||
})
|
||||
}, abortChannel, cont);
|
||||
});
|
||||
}
|
||||
|
||||
function wrapAbort(event, f) {
|
||||
return new Event(function (baseEvents, wrapFunction, abortChannel, cont) {
|
||||
var index = baseEvents.length;
|
||||
event.prepare(baseEvents, wrapFunction, abortChannel, function (error) {
|
||||
if (error) {
|
||||
cont(error);
|
||||
} else {
|
||||
var childBaseEvents = baseEvents.slice(index);
|
||||
abortChannel.read(function (baseEvent) {
|
||||
if (childBaseEvents.indexOf(baseEvent) === -1) {
|
||||
f();
|
||||
}
|
||||
});
|
||||
cont(null);
|
||||
}
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
function chooseBinary(e1, e2) {
|
||||
return new Event(function (baseEvents, wrapFunction, abortChannel, cont) {
|
||||
e1.prepare(baseEvents, wrapFunction, abortChannel, function (error) {
|
||||
if (error) {
|
||||
cont(error);
|
||||
} else {
|
||||
e2.prepare(baseEvents, wrapFunction, abortChannel, cont);
|
||||
}
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
function choose(events) {
|
||||
return events.reduce(chooseBinary);
|
||||
}
|
||||
|
||||
function select(events, cont) {
|
||||
sync(choose(events), cont);
|
||||
}
|
||||
|
||||
function range(a, b) {
|
||||
var l = [];
|
||||
for (var i = a; i <= b; i++) l.push(i);
|
||||
return l;
|
||||
}
|
||||
|
||||
function randomize(l) {
|
||||
for (var i = 0; i < l.length; i++) {
|
||||
var j = Math.floor(Math.random() * (i + 1));
|
||||
var t = l[i];
|
||||
l[i] = l[j];
|
||||
l[j] = t;
|
||||
}
|
||||
}
|
||||
|
||||
function pollBaseEvents(baseEvents, cont) {
|
||||
var cancelFunctions = [];
|
||||
|
||||
function ret(baseEvent, value) {
|
||||
cancelFunctions.forEach(function (cancel) {
|
||||
cancel();
|
||||
});
|
||||
cont(baseEvent, value);
|
||||
}
|
||||
|
||||
baseEvents.forEach(function (baseEvent) {
|
||||
var pollResult = baseEvent.poll();
|
||||
if (pollResult !== null) {
|
||||
ret(baseEvent, pollResult.value);
|
||||
} else {
|
||||
var cancel = baseEvent.wait(function (value) {
|
||||
ret(baseEvent, value);
|
||||
});
|
||||
cancelFunctions.push(cancel);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
function sync(event, cont) {
|
||||
cont = cont || function () {
|
||||
};
|
||||
var baseEvents = [];
|
||||
var wrapFunction = function (value, cont) {
|
||||
cont(null, value);
|
||||
};
|
||||
var abortChannel = new Channel();
|
||||
function ret(baseEvent, value) {
|
||||
baseEvent.wrapFunction(value, cont);
|
||||
(function spawnAbortFunction() {
|
||||
abortChannel.write(baseEvent, spawnAbortFunction);
|
||||
}());
|
||||
}
|
||||
function pollBaseEvents() {
|
||||
(function loop(n) {
|
||||
if(n === baseEvents.length) {
|
||||
waitBaseEvents();
|
||||
} else {
|
||||
var baseEvent = baseEvents[n];
|
||||
var result = baseEvent.poll();
|
||||
if(result !== null) {
|
||||
ret(baseEvent, result.value);
|
||||
} else {
|
||||
setImmediate(function() { loop(n + 1); });
|
||||
}
|
||||
}
|
||||
})(0);
|
||||
}
|
||||
function waitBaseEvents() {
|
||||
var cancelFunctions = [];
|
||||
var done = false;
|
||||
(function loop(n) {
|
||||
if(!done && n !== baseEvents.length) {
|
||||
var baseEvent = baseEvents[n];
|
||||
var cancelFunction = baseEvent.wait(function (value) {
|
||||
cancelFunctions.forEach(function (cancelFunction) {
|
||||
cancelFunction();
|
||||
});
|
||||
done = true;
|
||||
ret(baseEvent, value);
|
||||
});
|
||||
cancelFunctions.push(cancelFunction);
|
||||
setImmediate(function() { loop(n + 1); });
|
||||
}
|
||||
})(0);
|
||||
}
|
||||
event.prepare(baseEvents, wrapFunction, abortChannel, function (error) {
|
||||
if (error) return cont(error);
|
||||
randomize(baseEvents);
|
||||
pollBaseEvents();
|
||||
});
|
||||
}
|
||||
|
||||
function newChannel() {
|
||||
return new Channel();
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
Channel: Channel,
|
||||
newChannel: newChannel,
|
||||
guard: guard,
|
||||
wrap: wrap,
|
||||
wrapAbort: wrapAbort,
|
||||
chooseBinary: chooseBinary,
|
||||
choose: choose,
|
||||
select: select,
|
||||
sync: sync,
|
||||
timeout: timeout,
|
||||
never: never,
|
||||
always: always
|
||||
};
|
41
node/node_modules/cjs/package.json
generated
vendored
Normal file
41
node/node_modules/cjs/package.json
generated
vendored
Normal file
|
@ -0,0 +1,41 @@
|
|||
{
|
||||
"_from": "cjs@0.0.11",
|
||||
"_id": "cjs@0.0.11",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-H+Uo69qPnuIfgaf3spmo1wsUpHw=",
|
||||
"_location": "/cjs",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "cjs@0.0.11",
|
||||
"name": "cjs",
|
||||
"escapedName": "cjs",
|
||||
"rawSpec": "0.0.11",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "0.0.11"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/cjs/-/cjs-0.0.11.tgz",
|
||||
"_shasum": "1fe528ebda8f9ee21f81a7f7b299a8d70b14a47c",
|
||||
"_spec": "cjs@0.0.11",
|
||||
"_where": "/Users/sclay/projects/newsblur/node",
|
||||
"author": {
|
||||
"name": "Johannes Goetz"
|
||||
},
|
||||
"bundleDependencies": false,
|
||||
"dependencies": {
|
||||
"sync-channel": "*"
|
||||
},
|
||||
"deprecated": false,
|
||||
"description": "Concurrent Javascript",
|
||||
"license": "BSD",
|
||||
"main": "cjs.js",
|
||||
"name": "cjs",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"version": "0.0.11"
|
||||
}
|
23
node/node_modules/json-loader/.npmignore
generated
vendored
Normal file
23
node/node_modules/json-loader/.npmignore
generated
vendored
Normal file
|
@ -0,0 +1,23 @@
|
|||
/node_modules
|
||||
|
||||
/example/assets
|
||||
|
||||
/test/js
|
||||
/coverage
|
||||
|
||||
/.idea
|
||||
|
||||
.DS_Store
|
||||
|
||||
logs
|
||||
*.log
|
||||
npm-debug.log*
|
||||
.eslintcache
|
||||
/dist
|
||||
/local
|
||||
/reports
|
||||
Thumbs.db
|
||||
.idea
|
||||
.vscode
|
||||
*.sublime-project
|
||||
*.sublime-workspace
|
55
node/node_modules/json-loader/CHANGELOG.md
generated
vendored
Normal file
55
node/node_modules/json-loader/CHANGELOG.md
generated
vendored
Normal file
|
@ -0,0 +1,55 @@
|
|||
# Change Log
|
||||
|
||||
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
||||
|
||||
<a name="0.5.7"></a>
|
||||
## [0.5.7](https://github.com/webpack/json-loader/compare/v0.5.6...v0.5.7) (2017-07-22)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* Strip deprecation warning ([#58](https://github.com/webpack/json-loader/issues/58)) ([a2cf6c6](https://github.com/webpack/json-loader/commit/a2cf6c6))
|
||||
|
||||
|
||||
|
||||
<a name="0.5.6"></a>
|
||||
## [0.5.6](https://github.com/webpack/json-loader/compare/v0.5.5...v0.5.6) (2017-07-22)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **index:** only export CJS modules (`webpack v1.0.0`) && add deprecation warning (`webpack v2.0.0`) ([#55](https://github.com/webpack/json-loader/issues/55)) ([d34395a](https://github.com/webpack/json-loader/commit/d34395a))
|
||||
|
||||
|
||||
|
||||
<a name="0.5.5"></a>
|
||||
## [0.5.5](https://github.com/webpack/json-loader/compare/v0.5.2...v0.5.5) (2017-07-22)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* add `stringify` option to output JSON object as string ([#45](https://github.com/webpack/json-loader/issues/45)) ([dbf1fa5](https://github.com/webpack/json-loader/commit/dbf1fa5))
|
||||
* Don't stringify with tabs to improve perf ([ee75f99](https://github.com/webpack/json-loader/commit/ee75f99)), closes [#31](https://github.com/webpack/json-loader/issues/31)
|
||||
* escape newline/paragraph separators ([#18](https://github.com/webpack/json-loader/issues/18)) ([939a8cb](https://github.com/webpack/json-loader/commit/939a8cb))
|
||||
* Remove confusing statement about polyfill ([a06933c](https://github.com/webpack/json-loader/commit/a06933c)), closes [#7](https://github.com/webpack/json-loader/issues/7)
|
||||
|
||||
|
||||
### Reverts
|
||||
|
||||
* add `stringify` option to output JSON object as string ([#43](https://github.com/webpack/json-loader/issues/43)) ([#52](https://github.com/webpack/json-loader/issues/52)) ([e528e1d](https://github.com/webpack/json-loader/commit/e528e1d))
|
||||
|
||||
|
||||
|
||||
<a name="0.5.4"></a>
|
||||
## [0.5.4](https://github.com/webpack/json-loader/compare/v0.5.2...v0.5.4) (2017-07-22)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* add `stringify` option to output JSON object as string ([#45](https://github.com/webpack/json-loader/issues/45)) ([bb495b8](https://github.com/webpack/json-loader/commit/bb495b8))
|
||||
* escape newline/paragraph separators ([#18](https://github.com/webpack/json-loader/issues/18)) ([e70851e](https://github.com/webpack/json-loader/commit/e70851e))
|
||||
|
||||
|
||||
### Reverts
|
||||
|
||||
* add `stringify` option to output JSON object as string ([#43](https://github.com/webpack/json-loader/issues/43)) ([#52](https://github.com/webpack/json-loader/issues/52)) ([368cf18](https://github.com/webpack/json-loader/commit/368cf18))
|
20
node/node_modules/json-loader/LICENSE
generated
vendored
Normal file
20
node/node_modules/json-loader/LICENSE
generated
vendored
Normal file
|
@ -0,0 +1,20 @@
|
|||
Copyright JS Foundation and other contributors
|
||||
|
||||
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.
|
85
node/node_modules/json-loader/README.md
generated
vendored
Normal file
85
node/node_modules/json-loader/README.md
generated
vendored
Normal file
|
@ -0,0 +1,85 @@
|
|||
[![npm][npm]][npm-url]
|
||||
[![node][node]][node-url]
|
||||
[![deps][deps]][deps-url]
|
||||
[![tests][tests]][tests-url]
|
||||
[![coverage][cover]][cover-url]
|
||||
[![chat][chat]][chat-url]
|
||||
|
||||
<div align="center">
|
||||
<img width="160" height="180"
|
||||
src="https://worldvectorlogo.com/logos/json.svg">
|
||||
<a href="https://github.com/webpack/webpack">
|
||||
<img width="200" height="200"
|
||||
src="https://webpack.js.org/assets/icon-square-big.svg">
|
||||
</a>
|
||||
<h1>JSON Loader</h1>
|
||||
</div>
|
||||
|
||||
<h2 align="center">Install</h2>
|
||||
|
||||
```bash
|
||||
npm install --save-dev json-loader
|
||||
```
|
||||
|
||||
> ⚠️ **Since `webpack >= v2.0.0`, importing of JSON files will work by default. You might still want to use this if you use a custom file extension. See the [v1.0.0 -> v2.0.0 Migration Guide](https://webpack.js.org/guides/migrating/#json-loader-is-not-required-anymore) for more information**
|
||||
|
||||
<h2 align="center">Usage</h2>
|
||||
|
||||
### `Inline`
|
||||
|
||||
```js
|
||||
const json = require('json-loader!./file.json');
|
||||
```
|
||||
|
||||
### `Configuration` (recommended)
|
||||
|
||||
```js
|
||||
const json = require('./file.json');
|
||||
```
|
||||
|
||||
**webpack.config.js**
|
||||
```js
|
||||
module.exports = {
|
||||
module: {
|
||||
loaders: [
|
||||
{
|
||||
test: /\.json$/,
|
||||
loader: 'json-loader'
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
<h2 align="center">Maintainer</h2>
|
||||
|
||||
<table>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td align="center">
|
||||
<img width="150" height="150" src="https://avatars.githubusercontent.com/sokra?v=3">
|
||||
</br>
|
||||
<a href="https://github.com/sokra">Tobias Koppers</a>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
|
||||
[npm]: https://img.shields.io/npm/v/json-loader.svg
|
||||
[npm-url]: https://npmjs.com/package/json-loader
|
||||
|
||||
[node]: https://img.shields.io/node/v/json-loader.svg
|
||||
[node-url]: https://nodejs.org
|
||||
|
||||
[deps]: https://david-dm.org/webpack/json-loader.svg
|
||||
[deps-url]: https://david-dm.org/webpack/json-loader
|
||||
|
||||
[tests]: http://img.shields.io/travis/webpack/json-loader.svg
|
||||
[tests-url]: https://travis-ci.org/webpack/json-loader
|
||||
|
||||
[cover]: https://coveralls.io/repos/github/webpack/json-loader/badge.svg
|
||||
[cover-url]: https://coveralls.io/github/webpack/json-loader
|
||||
|
||||
[chat]: https://badges.gitter.im/webpack/webpack.svg
|
||||
[chat-url]: https://gitter.im/webpack/webpack
|
11
node/node_modules/json-loader/index.js
generated
vendored
Normal file
11
node/node_modules/json-loader/index.js
generated
vendored
Normal file
|
@ -0,0 +1,11 @@
|
|||
module.exports = function (source) {
|
||||
if (this.cacheable) this.cacheable();
|
||||
|
||||
var value = typeof source === "string" ? JSON.parse(source) : source;
|
||||
|
||||
value = JSON.stringify(value)
|
||||
.replace(/\u2028/g, '\\u2028')
|
||||
.replace(/\u2029/g, '\\u2029');
|
||||
|
||||
return `module.exports = ${value}`;
|
||||
}
|
48
node/node_modules/json-loader/package.json
generated
vendored
Normal file
48
node/node_modules/json-loader/package.json
generated
vendored
Normal file
|
@ -0,0 +1,48 @@
|
|||
{
|
||||
"_from": "json-loader@^0.5.7",
|
||||
"_id": "json-loader@0.5.7",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-QLPs8Dj7lnf3e3QYS1zkCo+4ZwqOiF9d/nZnYozTISxXWCfNs9yuky5rJw4/W34s7POaNlbZmQGaB5NiXCbP4w==",
|
||||
"_location": "/json-loader",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "range",
|
||||
"registry": true,
|
||||
"raw": "json-loader@^0.5.7",
|
||||
"name": "json-loader",
|
||||
"escapedName": "json-loader",
|
||||
"rawSpec": "^0.5.7",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "^0.5.7"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/json-loader/-/json-loader-0.5.7.tgz",
|
||||
"_shasum": "dca14a70235ff82f0ac9a3abeb60d337a365185d",
|
||||
"_spec": "json-loader@^0.5.7",
|
||||
"_where": "/Users/sclay/projects/newsblur/node",
|
||||
"author": {
|
||||
"name": "Tobias Koppers @sokra"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/webpack/json-loader/issues"
|
||||
},
|
||||
"bundleDependencies": false,
|
||||
"deprecated": false,
|
||||
"description": "json loader module for webpack",
|
||||
"devDependencies": {
|
||||
"standard-version": "^4.2.0"
|
||||
},
|
||||
"homepage": "https://github.com/webpack/json-loader#readme",
|
||||
"license": "MIT",
|
||||
"name": "json-loader",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/webpack/json-loader.git"
|
||||
},
|
||||
"scripts": {
|
||||
"release": "standard-version"
|
||||
},
|
||||
"version": "0.5.7"
|
||||
}
|
22
node/node_modules/moment-timezone/.npmignore
generated
vendored
Normal file
22
node/node_modules/moment-timezone/.npmignore
generated
vendored
Normal file
|
@ -0,0 +1,22 @@
|
|||
temp
|
||||
tests
|
||||
typing-tests
|
||||
scripts
|
||||
.idea
|
||||
|
||||
Gruntfile.js
|
||||
tasks
|
||||
|
||||
contributing.md
|
||||
|
||||
.travis.yml
|
||||
.jshintrc
|
||||
|
||||
bower.json
|
||||
|
||||
data/unpacked/*.json
|
||||
data/unpacked/latest.json
|
||||
data/packed/*.json
|
||||
!data/packed/latest.json
|
||||
data/meta/*.json
|
||||
!data/meta/latest.json
|
20
node/node_modules/moment-timezone/LICENSE
generated
vendored
Normal file
20
node/node_modules/moment-timezone/LICENSE
generated
vendored
Normal file
|
@ -0,0 +1,20 @@
|
|||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) JS Foundation and other contributors
|
||||
|
||||
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.
|
36
node/node_modules/moment-timezone/README.md
generated
vendored
Normal file
36
node/node_modules/moment-timezone/README.md
generated
vendored
Normal file
|
@ -0,0 +1,36 @@
|
|||
# [Moment Timezone](http://momentjs.com/timezone)
|
||||
|
||||
[](https://gitter.im/moment/moment-timezone?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
|
||||
|
||||
[![NPM version][npm-version-image]][npm-url] [![NPM downloads][npm-downloads-image]][npm-url] [![MIT License][license-image]][license-url] [![Build Status][travis-image]][travis-url]
|
||||
|
||||
IANA Time Zone Database + [Moment.js](http://momentjs.com).
|
||||
|
||||
```js
|
||||
var june = moment("2014-06-01T12:00:00Z");
|
||||
june.tz('America/Los_Angeles').format('ha z'); // 5am PDT
|
||||
june.tz('America/New_York').format('ha z'); // 8am EDT
|
||||
june.tz('Asia/Tokyo').format('ha z'); // 9pm JST
|
||||
june.tz('Australia/Sydney').format('ha z'); // 10pm EST
|
||||
|
||||
var dec = moment("2014-12-01T12:00:00Z");
|
||||
dec.tz('America/Los_Angeles').format('ha z'); // 4am PST
|
||||
dec.tz('America/New_York').format('ha z'); // 7am EST
|
||||
dec.tz('Asia/Tokyo').format('ha z'); // 9pm JST
|
||||
dec.tz('Australia/Sydney').format('ha z'); // 11pm EST
|
||||
```
|
||||
|
||||
#### [Contribute code or compile time zone data](contributing.md)
|
||||
|
||||
#### [Read the changelog](changelog.md)
|
||||
|
||||
|
||||
[license-image]: http://img.shields.io/badge/license-MIT-blue.svg?style=flat
|
||||
[license-url]: LICENSE
|
||||
|
||||
[npm-url]: https://npmjs.org/package/moment-timezone
|
||||
[npm-version-image]: http://img.shields.io/npm/v/moment-timezone.svg?style=flat
|
||||
[npm-downloads-image]: http://img.shields.io/npm/dm/moment-timezone.svg?style=flat
|
||||
|
||||
[travis-url]: http://travis-ci.org/moment/moment-timezone
|
||||
[travis-image]: http://img.shields.io/travis/moment/moment-timezone/develop.svg?style=flat
|
1546
node/node_modules/moment-timezone/builds/moment-timezone-with-data-10-year-range.js
generated
vendored
Normal file
1546
node/node_modules/moment-timezone/builds/moment-timezone-with-data-10-year-range.js
generated
vendored
Normal file
File diff suppressed because it is too large
Load diff
1
node/node_modules/moment-timezone/builds/moment-timezone-with-data-10-year-range.min.js
generated
vendored
Normal file
1
node/node_modules/moment-timezone/builds/moment-timezone-with-data-10-year-range.min.js
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
1546
node/node_modules/moment-timezone/builds/moment-timezone-with-data-1970-2030.js
generated
vendored
Normal file
1546
node/node_modules/moment-timezone/builds/moment-timezone-with-data-1970-2030.js
generated
vendored
Normal file
File diff suppressed because it is too large
Load diff
1
node/node_modules/moment-timezone/builds/moment-timezone-with-data-1970-2030.min.js
generated
vendored
Normal file
1
node/node_modules/moment-timezone/builds/moment-timezone-with-data-1970-2030.min.js
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
1546
node/node_modules/moment-timezone/builds/moment-timezone-with-data-2012-2022.js
generated
vendored
Normal file
1546
node/node_modules/moment-timezone/builds/moment-timezone-with-data-2012-2022.js
generated
vendored
Normal file
File diff suppressed because it is too large
Load diff
1
node/node_modules/moment-timezone/builds/moment-timezone-with-data-2012-2022.min.js
generated
vendored
Normal file
1
node/node_modules/moment-timezone/builds/moment-timezone-with-data-2012-2022.min.js
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
1546
node/node_modules/moment-timezone/builds/moment-timezone-with-data.js
generated
vendored
Normal file
1546
node/node_modules/moment-timezone/builds/moment-timezone-with-data.js
generated
vendored
Normal file
File diff suppressed because it is too large
Load diff
1
node/node_modules/moment-timezone/builds/moment-timezone-with-data.min.js
generated
vendored
Normal file
1
node/node_modules/moment-timezone/builds/moment-timezone-with-data.min.js
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
1
node/node_modules/moment-timezone/builds/moment-timezone.min.js
generated
vendored
Normal file
1
node/node_modules/moment-timezone/builds/moment-timezone.min.js
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
213
node/node_modules/moment-timezone/changelog.md
generated
vendored
Normal file
213
node/node_modules/moment-timezone/changelog.md
generated
vendored
Normal file
|
@ -0,0 +1,213 @@
|
|||
### `0.5.31` _2020-05-16_
|
||||
* Fixed Travis builds for Node.js 4 and 6
|
||||
|
||||
### `0.5.30` _2020-05-16_
|
||||
* Updated data to IANA TZDB `2020a`
|
||||
* Fixed typescript definitions
|
||||
|
||||
### `0.5.29` _2020-05-16_
|
||||
* Merged fix of es6 module loading issue https://github.com/moment/moment-timezone/commit/1fd42349189b24e15c60f162dc8c40b42db79dfe
|
||||
* Merged PR with typescript declarations https://github.com/moment/moment-timezone/commit/ed529ea6fbcc70315c0c3f6d7c7cb70eadf56b03
|
||||
* Merged fixes to changelog https://github.com/moment/moment-timezone/commit/adb7d7b43c7328d814311ac1355bfeef88eab6e8
|
||||
|
||||
### `0.5.28` _2020-02-21_
|
||||
Merged pull request #410 from @adgrace:
|
||||
* Added a method `moment.tz.zonesForCountry(country_code)` which returns all timezones for the country
|
||||
* Added a method `moment.tz(timezone_id).countries()` to get countries for some time zone
|
||||
* Added a method `moment.tz.countries()` to get all country codes
|
||||
* And as you know `moment.tz.zones()` already exists
|
||||
|
||||
### `0.5.27` _2019-10-14_
|
||||
* Updated data to IANA TZDB `2019c`
|
||||
|
||||
### `0.5.26` _2019-06-06_
|
||||
* Updated data to IANA TZDB `2019b`
|
||||
* Fix: stabilize Array.sort [#762](https://github.com/moment/moment-timezone/pull/762)
|
||||
|
||||
### `0.5.25` _2019-04-17_
|
||||
* Fix `moment.tz.dataVersion` to return `2019a` [#742](https://github.com/moment/moment-timezone/issues/742)
|
||||
* Update path in bower.json
|
||||
|
||||
### `0.5.24` _2019-04-17_
|
||||
* Updated data to IANA TZDB `2019a` [#737](https://github.com/moment/moment-timezone/issues/737)
|
||||
* Start shipping both a 1970-1930 file and a rolling 10-year file [#614](https://github.com/moment/moment-timezone/issues/614) [#697](https://github.com/moment/moment-timezone/issues/697)
|
||||
* Fixed bug where `_z` time zone name was not cleared with `.local()` or `.utcOffset(offset)` [#738](https://github.com/moment/moment-timezone/issues/738)
|
||||
|
||||
### `0.5.23` _2018-10-28_
|
||||
* Fix minor issue with tz guessing in Russia [#691](https://github.com/moment/moment-timezone/pull/691)
|
||||
|
||||
### `0.5.22` _2018-10-28_
|
||||
* Updated data to IANA TZDB `2018g` [#689](https://github.com/moment/moment-timezone/pull/689)
|
||||
* Fix issue with missing LMT entries for some zones, and fix data builds on Linux and Windows [#308](https://github.com/moment/moment-timezone/issues/308)
|
||||
|
||||
### `0.5.21` _2018-06-23_
|
||||
* Bugfix: revert breaking change introduced in 0.5.18
|
||||
|
||||
### `0.5.20` _2018-06-18_
|
||||
* Bugfix: accidentally commented code
|
||||
|
||||
### `0.5.19` _2018-06-18_
|
||||
* Revert: moved moment to peerDependencies
|
||||
|
||||
### `0.5.18` _2018-06-18_
|
||||
* Return error when timezone name is not a string.
|
||||
* Moved moment to peerDependencies [#628](https://github.com/moment/moment-timezone/pull/628)
|
||||
* Prefer nodejs to amd declaration [#573](https://github.com/moment/moment-timezone/pull/573)
|
||||
|
||||
### `0.5.17` _2018-05-12_
|
||||
* Updated data to IANA TZDB `2018d`. [#616](https://github.com/moment/moment-timezone/pull/616)
|
||||
|
||||
### `0.5.16` _2018-04-18_
|
||||
* Fixed Etc/UTC timezone recognition, updated tests. [#599](https://github.com/moment/moment-timezone/pull/599)
|
||||
* Updated minified files to contain IANA TZDB `2018d` data
|
||||
|
||||
### `0.5.15` _2018-04-17_
|
||||
* Updated data to IANA TZDB `2018d`. [#596](https://github.com/moment/moment-timezone/pull/596)
|
||||
|
||||
### `0.5.14` _2017-10-30_
|
||||
* Ensure Intl response is valid when guessing time zone. [#553](https://github.com/moment/moment-timezone/pull/553)
|
||||
* Updated data to IANA TZDB `2017c`. [#552](https://github.com/moment/moment-timezone/pull/552)
|
||||
* Convert to tz keeping wall time [#505](https://github.com/moment/moment-timezone/pull/505)
|
||||
* Make all time zones available for guessing. [#483](https://github.com/moment/moment-timezone/pull/483)
|
||||
* zone.offset has been deprecated in favor of zone.utcOffset [#398](https://github.com/moment/moment-timezone/pull/398)
|
||||
* Check for timestamp formats when parsing [#348](https://github.com/moment/moment-timezone/pull/348)
|
||||
|
||||
### `0.5.13` _2017-04-04_
|
||||
* Bumped version to address Bower cache issues with last release. [#474](https://github.com/moment/moment-timezone/issues/474)
|
||||
* (No actual changes otherwise)
|
||||
|
||||
### `0.5.12` _2017-04-02_
|
||||
* Updated data to IANA TZDB `2017b`. [#422](https://github.com/moment/moment-timezone/pull/460)
|
||||
* Build the truncated data file as 2012-2022 (+/- 5 years).
|
||||
|
||||
### `0.5.11` _2016-12-23_
|
||||
* Remove log statement when data is loaded twice. [#352](https://github.com/moment/moment-timezone/pull/352)
|
||||
|
||||
### `0.5.10` _2016-11-27_
|
||||
* Updated data to IANA TZDB `2016j`. [#422](https://github.com/moment/moment-timezone/pull/422)
|
||||
|
||||
### `0.5.9` _2016-11-03_
|
||||
* Fixed the output of `moment.tz.version`. [#413](https://github.com/moment/moment-timezone/issues/413)
|
||||
|
||||
### `0.5.8` _2016-11-03_
|
||||
* Updated data to IANA TZDB `2016i`. [#411](https://github.com/moment/moment-timezone/pull/411)
|
||||
|
||||
### `0.5.7` _2016-10-21_
|
||||
* Updated data to IANA TZDB `2016h`. [#403](https://github.com/moment/moment-timezone/pull/403)
|
||||
|
||||
### `0.5.6` _2016-10-08_
|
||||
* Updated data to IANA TZDB `2016g`. [#394](https://github.com/moment/moment-timezone/pull/394)
|
||||
|
||||
### `0.5.5` _2016-07-24_
|
||||
* Updated data to IANA TZDB `2016f`. [#360](https://github.com/moment/moment-timezone/pull/360)
|
||||
|
||||
### `0.5.4` _2016-05-03_
|
||||
* Updated data to IANA TZDB `2016d`. [#336](https://github.com/moment/moment-timezone/pull/336)
|
||||
* Ignore the results from `Intl.DateTimeFormat().resolvedOptions().timeZone` if it is undefined. [#322](https://github.com/moment/moment-timezone/pull/322)
|
||||
|
||||
### `0.5.3` _2016-03-24_
|
||||
* Updated data to IANA TZDB `2016c`. [#321](https://github.com/moment/moment-timezone/pull/321)
|
||||
|
||||
### `0.5.2` _2016-03-15_
|
||||
* Updated data to IANA TZDB `2016b`. [#315](https://github.com/moment/moment-timezone/pull/315)
|
||||
|
||||
### `0.5.1` _2016-03-01_
|
||||
* Updated data to IANA TZDB `2016a`. [#299](https://github.com/moment/moment-timezone/pull/299)
|
||||
* Fixed bug when `Date#toTimeString` did not return a known format. [#302](https://github.com/moment/moment-timezone/pull/302) [#303](https://github.com/moment/moment-timezone/pull/303)
|
||||
* Added lookup on `Intl.DateTimeFormat().resolvedOptions().timeZone` to `moment.tz.guess()`. [#304](https://github.com/moment/moment-timezone/pull/304) [#291](https://github.com/moment/moment-timezone/pull/291)
|
||||
|
||||
### `0.5.0` _2015-12-28_
|
||||
* Added support for guessing the user's timezone via `moment.tz.guess()`. [#285](https://github.com/moment/moment-timezone/pull/285)
|
||||
* Fixed UMD export issue when there was an html element with `id=exports`. [#275](https://github.com/moment/moment-timezone/pull/275)
|
||||
* Removed jspm specific dependencies from `package.json`. [#284](https://github.com/moment/moment-timezone/pull/284)
|
||||
|
||||
### `0.4.1` _2015-10-07_
|
||||
* Updated data to IANA TZDB `2015e`. [#253](https://github.com/moment/moment-timezone/pull/253)
|
||||
* Updated data to IANA TZDB `2015f`. [#253](https://github.com/moment/moment-timezone/pull/253)
|
||||
* Updated data to IANA TZDB `2015g`. [#255](https://github.com/moment/moment-timezone/pull/255)
|
||||
* Added jspm dependencies for moment. [#234](https://github.com/moment/moment-timezone/pull/234)
|
||||
* Included builds directory in npm. [#237](https://github.com/moment/moment-timezone/pull/237)
|
||||
* Removed version field from bower.json. [#230](https://github.com/moment/moment-timezone/pull/230)
|
||||
|
||||
### `0.4.0` _2015-05-30_
|
||||
* Updated data to IANA TZDB `2015b`. [#201](https://github.com/moment/moment-timezone/pull/201)
|
||||
* Updated data to IANA TZDB `2015c`. [#214](https://github.com/moment/moment-timezone/pull/214)
|
||||
* Updated data to IANA TZDB `2015d`. [#214](https://github.com/moment/moment-timezone/pull/214)
|
||||
* Updated zone getter to allow lazy unpacking to improve initial page load times. [#216](https://github.com/moment/moment-timezone/pull/216)
|
||||
* Added a `package.json` `jspm:main` entry point. [#194](https://github.com/moment/moment-timezone/pull/194)
|
||||
* Added `composer.json`. [#222](https://github.com/moment/moment-timezone/pull/222)
|
||||
* Added an error message when trying to load moment-timezone twice. [#212](https://github.com/moment/moment-timezone/pull/212)
|
||||
|
||||
### `0.3.1` _2015-03-16_
|
||||
* Updated data to IANA TZDB `2015a`. [#183](https://github.com/moment/moment-timezone/pull/183)
|
||||
|
||||
### `0.3.0` _2015-01-13_
|
||||
|
||||
* *Breaking:* Added country data to the `meta/*.json` files. Restructured the data to support multiple countries per zone. [#162](https://github.com/moment/moment-timezone/pull/162)
|
||||
* Added the ability to set a default timezone for all new moments. [#152](https://github.com/moment/moment-timezone/pull/152)
|
||||
* Fixed a bug when passing a moment with an offset to `moment.tz`. [#169](https://github.com/moment/moment-timezone/pull/169)
|
||||
* Fixed a deprecation in moment core, changing `moment#zone` to `moment#utcOffset`. [#168](https://github.com/moment/moment-timezone/pull/168)
|
||||
|
||||
### `0.2.5` _2014-11-12_
|
||||
* Updated data to IANA TZDB `2014j`. [#151](https://github.com/moment/moment-timezone/pull/151)
|
||||
|
||||
### `0.2.4` _2014-10-20_
|
||||
* Updated data to IANA TZDB `2014i`. [#142](https://github.com/moment/moment-timezone/pull/142)
|
||||
|
||||
### `0.2.3` _2014-10-20_
|
||||
* Updated data to IANA TZDB `2014h`. [#141](https://github.com/moment/moment-timezone/pull/141)
|
||||
|
||||
### `0.2.2` _2014-09-04_
|
||||
* Updated data to IANA TZDB `2014g`. [#126](https://github.com/moment/moment-timezone/pull/126)
|
||||
* Added a warning when using `moment-timezone` with `moment<2.6.0`.
|
||||
|
||||
### `0.2.1` _2014-08-02_
|
||||
* Fixed support for `moment@2.8.1+`.
|
||||
|
||||
### `0.2.0` _2014-07-21_
|
||||
* Added the ability to configure whether ambiguous or invalid input is rolled forward or backward. [#101](https://github.com/moment/moment-timezone/pull/101)
|
||||
* Added `moment>=2.6.0` as a dependency in `bower.json`. [#107](https://github.com/moment/moment-timezone/issues/107)
|
||||
* Fixed getting the name of a zone that was added as a linked zone. [#104](https://github.com/moment/moment-timezone/pull/104)
|
||||
* Added an error message when a zone was not loaded. [#106](https://github.com/moment/moment-timezone/issues/106)
|
||||
|
||||
### `0.1.0` _2014-06-23_
|
||||
* *Breaking:* Changed data format from Zones+Rules to just Zones. [#82](https://github.com/moment/moment-timezone/pull/82)
|
||||
* *Breaking:* Removed `moment.tz.{addRule,addZone,zoneExists,zones}` as they are no longer relevant with the new data format.
|
||||
* Made library 20x faster. [JSPerf results](http://jsperf.com/moment-timezone-0-1-0/2)
|
||||
* Completely rewrote internals to support new data format.
|
||||
* Updated the data collection process to get data directly from http://www.iana.org/time-zones.
|
||||
* Updated data to IANA TZDB `2014e`.
|
||||
* Updated `bower.json` to use a browser specific `main:` entry point.
|
||||
* Added built files with included data.
|
||||
* Added support for accurately parsing input around DST changes. [#93](https://github.com/moment/moment-timezone/pull/93)
|
||||
* Added comprehensive documentation at [momentjs.com/timezone/docs/](http://momentjs.com/timezone/docs/).
|
||||
* Added `moment.tz.link` for linking two identical zones.
|
||||
* Added `moment.tz.zone` for getting a loaded zone.
|
||||
* Added `moment.tz.load` for loading a bundled version of data from the IANA TZDB.
|
||||
* Added `moment.tz.names` for getting the names of all the loaded timezones.
|
||||
* Added `moment.tz.unpack` and `moment.tz.unpackBase60` for unpacking data.
|
||||
* Added `moment-timezone-utils.js` for working with the packed and unpacked data.
|
||||
* Fixed major memory leak. [#79](https://github.com/moment/moment-timezone/issues/79)
|
||||
* Fixed global export to allow use in web workers. [#78](https://github.com/moment/moment-timezone/pull/78)
|
||||
* Fixed global export in browser environments that define `window.module`. [#76](https://github.com/moment/moment-timezone/pull/76)
|
||||
|
||||
### `0.0.6` _2014-04-20_
|
||||
* Fixed issue with preventing loading moment-timezone more than once. [#75](https://github.com/moment/moment-timezone/pull/75)
|
||||
|
||||
### `0.0.5` _2014-04-17_
|
||||
* Improved performance with memoization. [#39](https://github.com/moment/moment-timezone/issues/39)
|
||||
* Published only necessary files to npm. [#46](https://github.com/moment/moment-timezone/issues/46)
|
||||
* Added better handling of timezones around DST. [#53](https://github.com/moment/moment-timezone/issues/53) [#61](https://github.com/moment/moment-timezone/issues/61) [#70](https://github.com/moment/moment-timezone/issues/70)
|
||||
* Added Browserify support. [#41](https://github.com/moment/moment-timezone/issues/41)
|
||||
* Added `moment.tz.zoneExists` [#73](https://github.com/moment/moment-timezone/issues/73)
|
||||
* Fixed cloning moments with a timezone. [#71](https://github.com/moment/moment-timezone/issues/71)
|
||||
* Prevent loading moment-timezone more than once. [#74](https://github.com/moment/moment-timezone/issues/74)
|
||||
|
||||
### `0.0.3` _2013-10-10_
|
||||
* Added Bower support.
|
||||
* Added support for newer versions of moment.
|
||||
* Added support for constructing a moment with a string and zone.
|
||||
* Added more links and timezone names in moment-timezone.json
|
||||
|
||||
### `0.0.1` _2013-07-17_
|
||||
* Initial version.
|
43
node/node_modules/moment-timezone/composer.json
generated
vendored
Normal file
43
node/node_modules/moment-timezone/composer.json
generated
vendored
Normal file
|
@ -0,0 +1,43 @@
|
|||
{
|
||||
"name": "moment/moment-timezone",
|
||||
"description": "Parse and display dates in any timezone",
|
||||
"version": "0.5.31",
|
||||
"keywords": [
|
||||
"moment",
|
||||
"date",
|
||||
"time",
|
||||
"timezone",
|
||||
"olson",
|
||||
"iana",
|
||||
"zone",
|
||||
"tz"
|
||||
],
|
||||
"homepage": "http://momentjs.com/timezone/",
|
||||
"license": "MIT",
|
||||
"support": {
|
||||
"issues": "https://github.com/moment/moment-timezone/issues",
|
||||
"source": "https://github.com/moment/moment-timezone"
|
||||
},
|
||||
"authors": [
|
||||
{
|
||||
"name": "Tim Wood",
|
||||
"email": "washwithcare@gmail.com",
|
||||
"homepage": "http://timwoodcreates.com/"
|
||||
}
|
||||
],
|
||||
"type": "component",
|
||||
"require": {
|
||||
"robloach/component-installer": "*",
|
||||
"moment/moment": ">=2.9.0"
|
||||
},
|
||||
"extra": {
|
||||
"component": {
|
||||
"scripts": [
|
||||
"moment-timezone.js"
|
||||
],
|
||||
"files": [
|
||||
"builds/*.js"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
67
node/node_modules/moment-timezone/index.d.ts
generated
vendored
Normal file
67
node/node_modules/moment-timezone/index.d.ts
generated
vendored
Normal file
|
@ -0,0 +1,67 @@
|
|||
import moment = require('moment');
|
||||
|
||||
declare module 'moment' {
|
||||
interface MomentZone {
|
||||
name: string;
|
||||
abbrs: string[];
|
||||
untils: number[];
|
||||
offsets: number[];
|
||||
population: number;
|
||||
|
||||
abbr(timestamp: number): string;
|
||||
offset(timestamp: number): number;
|
||||
utcOffset(timestamp: number): number;
|
||||
parse(timestamp: number): number;
|
||||
}
|
||||
|
||||
interface MomentZoneOffset {
|
||||
name: string;
|
||||
offset: number;
|
||||
}
|
||||
|
||||
interface MomentTimezone {
|
||||
(): moment.Moment;
|
||||
(timezone: string): moment.Moment;
|
||||
(date: number, timezone: string): moment.Moment;
|
||||
(date: number[], timezone: string): moment.Moment;
|
||||
(date: string, timezone: string): moment.Moment;
|
||||
(date: string, format: moment.MomentFormatSpecification, timezone: string): moment.Moment;
|
||||
(date: string, format: moment.MomentFormatSpecification, strict: boolean, timezone: string): moment.Moment;
|
||||
(date: string, format: moment.MomentFormatSpecification, language: string, timezone: string): moment.Moment;
|
||||
(date: string, format: moment.MomentFormatSpecification, language: string, strict: boolean, timezone: string): moment.Moment;
|
||||
(date: Date, timezone: string): moment.Moment;
|
||||
(date: moment.Moment, timezone: string): moment.Moment;
|
||||
(date: any, timezone: string): moment.Moment;
|
||||
|
||||
zone(timezone: string): MomentZone | null;
|
||||
|
||||
add(packedZoneString: string): void;
|
||||
add(packedZoneString: string[]): void;
|
||||
|
||||
link(packedLinkString: string): void;
|
||||
link(packedLinkString: string[]): void;
|
||||
|
||||
load(data: { version: string; links: string[]; zones: string[] }): void;
|
||||
|
||||
names(): string[];
|
||||
zonesForCountry<T extends true>(country: string, with_offset: T): T extends true ? MomentZoneOffset[] : never;
|
||||
zonesForCountry<T extends false>(country: string, with_offset?: T): T extends false ? string[] : never;
|
||||
zonesForCountry(country: string, with_offset?: boolean): MomentZoneOffset[] | string[];
|
||||
countries(): string[];
|
||||
guess(ignoreCache?: boolean): string;
|
||||
|
||||
setDefault(timezone?: string): Moment;
|
||||
}
|
||||
|
||||
interface Moment {
|
||||
tz(): string | undefined;
|
||||
tz(timezone: string, keepLocalTime?: boolean): moment.Moment;
|
||||
zoneAbbr(): string;
|
||||
zoneName(): string;
|
||||
}
|
||||
|
||||
const tz: MomentTimezone;
|
||||
}
|
||||
|
||||
// require("moment-timezone") === require("moment")
|
||||
export = moment;
|
2
node/node_modules/moment-timezone/index.js
generated
vendored
Normal file
2
node/node_modules/moment-timezone/index.js
generated
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
var moment = module.exports = require("./moment-timezone");
|
||||
moment.tz.load(require('./data/packed/latest.json'));
|
70
node/node_modules/moment-timezone/moment-timezone-utils.d.ts
generated
vendored
Normal file
70
node/node_modules/moment-timezone/moment-timezone-utils.d.ts
generated
vendored
Normal file
|
@ -0,0 +1,70 @@
|
|||
import moment = require('moment');
|
||||
import { MomentTimezone } from "./index";
|
||||
|
||||
declare module 'moment' {
|
||||
|
||||
/** Parsed / unpacked zone data. */
|
||||
interface UnpackedZone {
|
||||
/** The uniquely identifying name of the time zone. */
|
||||
name: string;
|
||||
/** zone abbreviations */
|
||||
abbrs: Array<string>;
|
||||
/** (measured in milliseconds) */
|
||||
untils: Array<number | null>;
|
||||
/** (measured in minutes) */
|
||||
offsets: Array<number>;
|
||||
}
|
||||
|
||||
/** Bundle of zone data and links for multiple timezones */
|
||||
interface PackedZoneBundle {
|
||||
version: string;
|
||||
zones: Array<string>;
|
||||
links: Array<string>;
|
||||
}
|
||||
|
||||
/** Bundle of zone data and links for multiple timezones */
|
||||
interface UnpackedZoneBundle {
|
||||
version: string;
|
||||
zones: Array<UnpackedZone>;
|
||||
links: Array<string>;
|
||||
}
|
||||
|
||||
/** extends MomentTimezone declared in index */
|
||||
interface MomentTimezone {
|
||||
/** Converts zone data in the unpacked format to the packed format. */
|
||||
pack(unpackedObject: UnpackedZone): string;
|
||||
|
||||
/** Convert a base 10 number to a base 60 string. */
|
||||
packBase60(input: number, precision?: number): string;
|
||||
|
||||
/** Create links out of two zones that share data.
|
||||
* @returns A new ZoneBundle with duplicate zone data replaced by links
|
||||
*/
|
||||
createLinks(unlinked: UnpackedZoneBundle): PackedZoneBundle;
|
||||
|
||||
/**
|
||||
* Filter out data for years outside a certain range.
|
||||
* @return a new, filtered UnPackedZone object
|
||||
*/
|
||||
filterYears(unpackedZone: UnpackedZone, startYear: number, endYear: number): UnpackedZone;
|
||||
/**
|
||||
* Filter out data for years outside a certain range.
|
||||
* @return a new, filtered UnPackedZone object
|
||||
*/
|
||||
filterYears(unpackedZone: UnpackedZone, startAndEndYear: number): UnpackedZone;
|
||||
|
||||
/**
|
||||
* Combines packing, link creation, and subsetting of years into one simple interface.
|
||||
* Pass in an unpacked bundle, start year, and end year and get a filtered, linked, packed bundle back.
|
||||
*/
|
||||
filterLinkPack(unpackedBundle: UnpackedZoneBundle, startYear: number, endYear: number): PackedZoneBundle;
|
||||
/**
|
||||
* Combines packing, link creation, and subsetting of years into one simple interface.
|
||||
* Pass in an unpacked bundle, start year, and end year and get a filtered, linked, packed bundle back.
|
||||
*/
|
||||
filterLinkPack(unpackedBundle: UnpackedZoneBundle, startAndEndYear: number): PackedZoneBundle;
|
||||
}
|
||||
}
|
||||
|
||||
// require("moment-timezone") === require("moment")
|
||||
export = moment;
|
339
node/node_modules/moment-timezone/moment-timezone-utils.js
generated
vendored
Normal file
339
node/node_modules/moment-timezone/moment-timezone-utils.js
generated
vendored
Normal file
|
@ -0,0 +1,339 @@
|
|||
//! moment-timezone-utils.js
|
||||
//! version : 0.5.31
|
||||
//! Copyright (c) JS Foundation and other contributors
|
||||
//! license : MIT
|
||||
//! github.com/moment/moment-timezone
|
||||
|
||||
(function (root, factory) {
|
||||
"use strict";
|
||||
|
||||
/*global define*/
|
||||
if (typeof module === 'object' && module.exports) {
|
||||
module.exports = factory(require('./')); // Node
|
||||
} else if (typeof define === 'function' && define.amd) {
|
||||
define(['moment'], factory); // AMD
|
||||
} else {
|
||||
factory(root.moment); // Browser
|
||||
}
|
||||
}(this, function (moment) {
|
||||
"use strict";
|
||||
|
||||
if (!moment.tz) {
|
||||
throw new Error("moment-timezone-utils.js must be loaded after moment-timezone.js");
|
||||
}
|
||||
|
||||
/************************************
|
||||
Pack Base 60
|
||||
************************************/
|
||||
|
||||
var BASE60 = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWX',
|
||||
EPSILON = 0.000001; // Used to fix floating point rounding errors
|
||||
|
||||
function packBase60Fraction(fraction, precision) {
|
||||
var buffer = '.',
|
||||
output = '',
|
||||
current;
|
||||
|
||||
while (precision > 0) {
|
||||
precision -= 1;
|
||||
fraction *= 60;
|
||||
current = Math.floor(fraction + EPSILON);
|
||||
buffer += BASE60[current];
|
||||
fraction -= current;
|
||||
|
||||
// Only add buffer to output once we have a non-zero value.
|
||||
// This makes '.000' output '', and '.100' output '.1'
|
||||
if (current) {
|
||||
output += buffer;
|
||||
buffer = '';
|
||||
}
|
||||
}
|
||||
|
||||
return output;
|
||||
}
|
||||
|
||||
function packBase60(number, precision) {
|
||||
var output = '',
|
||||
absolute = Math.abs(number),
|
||||
whole = Math.floor(absolute),
|
||||
fraction = packBase60Fraction(absolute - whole, Math.min(~~precision, 10));
|
||||
|
||||
while (whole > 0) {
|
||||
output = BASE60[whole % 60] + output;
|
||||
whole = Math.floor(whole / 60);
|
||||
}
|
||||
|
||||
if (number < 0) {
|
||||
output = '-' + output;
|
||||
}
|
||||
|
||||
if (output && fraction) {
|
||||
return output + fraction;
|
||||
}
|
||||
|
||||
if (!fraction && output === '-') {
|
||||
return '0';
|
||||
}
|
||||
|
||||
return output || fraction || '0';
|
||||
}
|
||||
|
||||
/************************************
|
||||
Pack
|
||||
************************************/
|
||||
|
||||
function packUntils(untils) {
|
||||
var out = [],
|
||||
last = 0,
|
||||
i;
|
||||
|
||||
for (i = 0; i < untils.length - 1; i++) {
|
||||
out[i] = packBase60(Math.round((untils[i] - last) / 1000) / 60, 1);
|
||||
last = untils[i];
|
||||
}
|
||||
|
||||
return out.join(' ');
|
||||
}
|
||||
|
||||
function packAbbrsAndOffsets(source) {
|
||||
var index = 0,
|
||||
abbrs = [],
|
||||
offsets = [],
|
||||
indices = [],
|
||||
map = {},
|
||||
i, key;
|
||||
|
||||
for (i = 0; i < source.abbrs.length; i++) {
|
||||
key = source.abbrs[i] + '|' + source.offsets[i];
|
||||
if (map[key] === undefined) {
|
||||
map[key] = index;
|
||||
abbrs[index] = source.abbrs[i];
|
||||
offsets[index] = packBase60(Math.round(source.offsets[i] * 60) / 60, 1);
|
||||
index++;
|
||||
}
|
||||
indices[i] = packBase60(map[key], 0);
|
||||
}
|
||||
|
||||
return abbrs.join(' ') + '|' + offsets.join(' ') + '|' + indices.join('');
|
||||
}
|
||||
|
||||
function packPopulation (number) {
|
||||
if (!number) {
|
||||
return '';
|
||||
}
|
||||
if (number < 1000) {
|
||||
return number;
|
||||
}
|
||||
var exponent = String(number | 0).length - 2;
|
||||
var precision = Math.round(number / Math.pow(10, exponent));
|
||||
return precision + 'e' + exponent;
|
||||
}
|
||||
|
||||
function packCountries (countries) {
|
||||
if (!countries) {
|
||||
return '';
|
||||
}
|
||||
return countries.join(' ');
|
||||
}
|
||||
|
||||
function validatePackData (source) {
|
||||
if (!source.name) { throw new Error("Missing name"); }
|
||||
if (!source.abbrs) { throw new Error("Missing abbrs"); }
|
||||
if (!source.untils) { throw new Error("Missing untils"); }
|
||||
if (!source.offsets) { throw new Error("Missing offsets"); }
|
||||
if (
|
||||
source.offsets.length !== source.untils.length ||
|
||||
source.offsets.length !== source.abbrs.length
|
||||
) {
|
||||
throw new Error("Mismatched array lengths");
|
||||
}
|
||||
}
|
||||
|
||||
function pack (source) {
|
||||
validatePackData(source);
|
||||
return [
|
||||
source.name, // 0 - timezone name
|
||||
packAbbrsAndOffsets(source), // 1 - abbrs, 2 - offsets, 3 - indices
|
||||
packUntils(source.untils), // 4 - untils
|
||||
packPopulation(source.population) // 5 - population
|
||||
].join('|');
|
||||
}
|
||||
|
||||
function packCountry (source) {
|
||||
return [
|
||||
source.name,
|
||||
source.zones.join(' '),
|
||||
].join('|');
|
||||
}
|
||||
|
||||
/************************************
|
||||
Create Links
|
||||
************************************/
|
||||
|
||||
function arraysAreEqual(a, b) {
|
||||
var i;
|
||||
|
||||
if (a.length !== b.length) { return false; }
|
||||
|
||||
for (i = 0; i < a.length; i++) {
|
||||
if (a[i] !== b[i]) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
function zonesAreEqual(a, b) {
|
||||
return arraysAreEqual(a.offsets, b.offsets) && arraysAreEqual(a.abbrs, b.abbrs) && arraysAreEqual(a.untils, b.untils);
|
||||
}
|
||||
|
||||
function findAndCreateLinks (input, output, links, groupLeaders) {
|
||||
var i, j, a, b, group, foundGroup, groups = [];
|
||||
|
||||
for (i = 0; i < input.length; i++) {
|
||||
foundGroup = false;
|
||||
a = input[i];
|
||||
|
||||
for (j = 0; j < groups.length; j++) {
|
||||
group = groups[j];
|
||||
b = group[0];
|
||||
if (zonesAreEqual(a, b)) {
|
||||
if (a.population > b.population) {
|
||||
group.unshift(a);
|
||||
} else if (a.population === b.population && groupLeaders && groupLeaders[a.name]) {
|
||||
group.unshift(a);
|
||||
} else {
|
||||
group.push(a);
|
||||
}
|
||||
foundGroup = true;
|
||||
}
|
||||
}
|
||||
|
||||
if (!foundGroup) {
|
||||
groups.push([a]);
|
||||
}
|
||||
}
|
||||
|
||||
for (i = 0; i < groups.length; i++) {
|
||||
group = groups[i];
|
||||
output.push(group[0]);
|
||||
for (j = 1; j < group.length; j++) {
|
||||
links.push(group[0].name + '|' + group[j].name);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function createLinks (source, groupLeaders) {
|
||||
var zones = [],
|
||||
links = [];
|
||||
|
||||
if (source.links) {
|
||||
links = source.links.slice();
|
||||
}
|
||||
|
||||
findAndCreateLinks(source.zones, zones, links, groupLeaders);
|
||||
|
||||
return {
|
||||
version : source.version,
|
||||
zones : zones,
|
||||
links : links.sort()
|
||||
};
|
||||
}
|
||||
|
||||
/************************************
|
||||
Filter Years
|
||||
************************************/
|
||||
|
||||
function findStartAndEndIndex (untils, start, end) {
|
||||
var startI = 0,
|
||||
endI = untils.length + 1,
|
||||
untilYear,
|
||||
i;
|
||||
|
||||
if (!end) {
|
||||
end = start;
|
||||
}
|
||||
|
||||
if (start > end) {
|
||||
i = start;
|
||||
start = end;
|
||||
end = i;
|
||||
}
|
||||
|
||||
for (i = 0; i < untils.length; i++) {
|
||||
if (untils[i] == null) {
|
||||
continue;
|
||||
}
|
||||
untilYear = new Date(untils[i]).getUTCFullYear();
|
||||
if (untilYear < start) {
|
||||
startI = i + 1;
|
||||
}
|
||||
if (untilYear > end) {
|
||||
endI = Math.min(endI, i + 1);
|
||||
}
|
||||
}
|
||||
|
||||
return [startI, endI];
|
||||
}
|
||||
|
||||
function filterYears (source, start, end) {
|
||||
var slice = Array.prototype.slice,
|
||||
indices = findStartAndEndIndex(source.untils, start, end),
|
||||
untils = slice.apply(source.untils, indices);
|
||||
|
||||
untils[untils.length - 1] = null;
|
||||
|
||||
return {
|
||||
name : source.name,
|
||||
abbrs : slice.apply(source.abbrs, indices),
|
||||
untils : untils,
|
||||
offsets : slice.apply(source.offsets, indices),
|
||||
population : source.population,
|
||||
countries : source.countries
|
||||
};
|
||||
}
|
||||
|
||||
/************************************
|
||||
Filter, Link, and Pack
|
||||
************************************/
|
||||
|
||||
function filterLinkPack (input, start, end, groupLeaders) {
|
||||
var i,
|
||||
inputZones = input.zones,
|
||||
outputZones = [],
|
||||
output;
|
||||
|
||||
for (i = 0; i < inputZones.length; i++) {
|
||||
outputZones[i] = filterYears(inputZones[i], start, end);
|
||||
}
|
||||
|
||||
output = createLinks({
|
||||
zones : outputZones,
|
||||
links : input.links.slice(),
|
||||
version : input.version
|
||||
}, groupLeaders);
|
||||
|
||||
for (i = 0; i < output.zones.length; i++) {
|
||||
output.zones[i] = pack(output.zones[i]);
|
||||
}
|
||||
|
||||
output.countries = input.countries ? input.countries.map(function (unpacked) {
|
||||
return packCountry(unpacked);
|
||||
}) : [];
|
||||
|
||||
return output;
|
||||
}
|
||||
|
||||
/************************************
|
||||
Exports
|
||||
************************************/
|
||||
|
||||
moment.tz.pack = pack;
|
||||
moment.tz.packBase60 = packBase60;
|
||||
moment.tz.createLinks = createLinks;
|
||||
moment.tz.filterYears = filterYears;
|
||||
moment.tz.filterLinkPack = filterLinkPack;
|
||||
moment.tz.packCountry = packCountry;
|
||||
|
||||
return moment;
|
||||
}));
|
696
node/node_modules/moment-timezone/moment-timezone.js
generated
vendored
Normal file
696
node/node_modules/moment-timezone/moment-timezone.js
generated
vendored
Normal file
|
@ -0,0 +1,696 @@
|
|||
//! moment-timezone.js
|
||||
//! version : 0.5.31
|
||||
//! Copyright (c) JS Foundation and other contributors
|
||||
//! license : MIT
|
||||
//! github.com/moment/moment-timezone
|
||||
|
||||
(function (root, factory) {
|
||||
"use strict";
|
||||
|
||||
/*global define*/
|
||||
if (typeof module === 'object' && module.exports) {
|
||||
module.exports = factory(require('moment')); // Node
|
||||
} else if (typeof define === 'function' && define.amd) {
|
||||
define(['moment'], factory); // AMD
|
||||
} else {
|
||||
factory(root.moment); // Browser
|
||||
}
|
||||
}(this, function (moment) {
|
||||
"use strict";
|
||||
|
||||
// Resolves es6 module loading issue
|
||||
if (moment.version === undefined && moment.default) {
|
||||
moment = moment.default;
|
||||
}
|
||||
|
||||
// Do not load moment-timezone a second time.
|
||||
// if (moment.tz !== undefined) {
|
||||
// logError('Moment Timezone ' + moment.tz.version + ' was already loaded ' + (moment.tz.dataVersion ? 'with data from ' : 'without any data') + moment.tz.dataVersion);
|
||||
// return moment;
|
||||
// }
|
||||
|
||||
var VERSION = "0.5.31",
|
||||
zones = {},
|
||||
links = {},
|
||||
countries = {},
|
||||
names = {},
|
||||
guesses = {},
|
||||
cachedGuess;
|
||||
|
||||
if (!moment || typeof moment.version !== 'string') {
|
||||
logError('Moment Timezone requires Moment.js. See https://momentjs.com/timezone/docs/#/use-it/browser/');
|
||||
}
|
||||
|
||||
var momentVersion = moment.version.split('.'),
|
||||
major = +momentVersion[0],
|
||||
minor = +momentVersion[1];
|
||||
|
||||
// Moment.js version check
|
||||
if (major < 2 || (major === 2 && minor < 6)) {
|
||||
logError('Moment Timezone requires Moment.js >= 2.6.0. You are using Moment.js ' + moment.version + '. See momentjs.com');
|
||||
}
|
||||
|
||||
/************************************
|
||||
Unpacking
|
||||
************************************/
|
||||
|
||||
function charCodeToInt(charCode) {
|
||||
if (charCode > 96) {
|
||||
return charCode - 87;
|
||||
} else if (charCode > 64) {
|
||||
return charCode - 29;
|
||||
}
|
||||
return charCode - 48;
|
||||
}
|
||||
|
||||
function unpackBase60(string) {
|
||||
var i = 0,
|
||||
parts = string.split('.'),
|
||||
whole = parts[0],
|
||||
fractional = parts[1] || '',
|
||||
multiplier = 1,
|
||||
num,
|
||||
out = 0,
|
||||
sign = 1;
|
||||
|
||||
// handle negative numbers
|
||||
if (string.charCodeAt(0) === 45) {
|
||||
i = 1;
|
||||
sign = -1;
|
||||
}
|
||||
|
||||
// handle digits before the decimal
|
||||
for (i; i < whole.length; i++) {
|
||||
num = charCodeToInt(whole.charCodeAt(i));
|
||||
out = 60 * out + num;
|
||||
}
|
||||
|
||||
// handle digits after the decimal
|
||||
for (i = 0; i < fractional.length; i++) {
|
||||
multiplier = multiplier / 60;
|
||||
num = charCodeToInt(fractional.charCodeAt(i));
|
||||
out += num * multiplier;
|
||||
}
|
||||
|
||||
return out * sign;
|
||||
}
|
||||
|
||||
function arrayToInt (array) {
|
||||
for (var i = 0; i < array.length; i++) {
|
||||
array[i] = unpackBase60(array[i]);
|
||||
}
|
||||
}
|
||||
|
||||
function intToUntil (array, length) {
|
||||
for (var i = 0; i < length; i++) {
|
||||
array[i] = Math.round((array[i - 1] || 0) + (array[i] * 60000)); // minutes to milliseconds
|
||||
}
|
||||
|
||||
array[length - 1] = Infinity;
|
||||
}
|
||||
|
||||
function mapIndices (source, indices) {
|
||||
var out = [], i;
|
||||
|
||||
for (i = 0; i < indices.length; i++) {
|
||||
out[i] = source[indices[i]];
|
||||
}
|
||||
|
||||
return out;
|
||||
}
|
||||
|
||||
function unpack (string) {
|
||||
var data = string.split('|'),
|
||||
offsets = data[2].split(' '),
|
||||
indices = data[3].split(''),
|
||||
untils = data[4].split(' ');
|
||||
|
||||
arrayToInt(offsets);
|
||||
arrayToInt(indices);
|
||||
arrayToInt(untils);
|
||||
|
||||
intToUntil(untils, indices.length);
|
||||
|
||||
return {
|
||||
name : data[0],
|
||||
abbrs : mapIndices(data[1].split(' '), indices),
|
||||
offsets : mapIndices(offsets, indices),
|
||||
untils : untils,
|
||||
population : data[5] | 0
|
||||
};
|
||||
}
|
||||
|
||||
/************************************
|
||||
Zone object
|
||||
************************************/
|
||||
|
||||
function Zone (packedString) {
|
||||
if (packedString) {
|
||||
this._set(unpack(packedString));
|
||||
}
|
||||
}
|
||||
|
||||
Zone.prototype = {
|
||||
_set : function (unpacked) {
|
||||
this.name = unpacked.name;
|
||||
this.abbrs = unpacked.abbrs;
|
||||
this.untils = unpacked.untils;
|
||||
this.offsets = unpacked.offsets;
|
||||
this.population = unpacked.population;
|
||||
},
|
||||
|
||||
_index : function (timestamp) {
|
||||
var target = +timestamp,
|
||||
untils = this.untils,
|
||||
i;
|
||||
|
||||
for (i = 0; i < untils.length; i++) {
|
||||
if (target < untils[i]) {
|
||||
return i;
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
countries : function () {
|
||||
var zone_name = this.name;
|
||||
return Object.keys(countries).filter(function (country_code) {
|
||||
return countries[country_code].zones.indexOf(zone_name) !== -1;
|
||||
});
|
||||
},
|
||||
|
||||
parse : function (timestamp) {
|
||||
var target = +timestamp,
|
||||
offsets = this.offsets,
|
||||
untils = this.untils,
|
||||
max = untils.length - 1,
|
||||
offset, offsetNext, offsetPrev, i;
|
||||
|
||||
for (i = 0; i < max; i++) {
|
||||
offset = offsets[i];
|
||||
offsetNext = offsets[i + 1];
|
||||
offsetPrev = offsets[i ? i - 1 : i];
|
||||
|
||||
if (offset < offsetNext && tz.moveAmbiguousForward) {
|
||||
offset = offsetNext;
|
||||
} else if (offset > offsetPrev && tz.moveInvalidForward) {
|
||||
offset = offsetPrev;
|
||||
}
|
||||
|
||||
if (target < untils[i] - (offset * 60000)) {
|
||||
return offsets[i];
|
||||
}
|
||||
}
|
||||
|
||||
return offsets[max];
|
||||
},
|
||||
|
||||
abbr : function (mom) {
|
||||
return this.abbrs[this._index(mom)];
|
||||
},
|
||||
|
||||
offset : function (mom) {
|
||||
logError("zone.offset has been deprecated in favor of zone.utcOffset");
|
||||
return this.offsets[this._index(mom)];
|
||||
},
|
||||
|
||||
utcOffset : function (mom) {
|
||||
return this.offsets[this._index(mom)];
|
||||
}
|
||||
};
|
||||
|
||||
/************************************
|
||||
Country object
|
||||
************************************/
|
||||
|
||||
function Country (country_name, zone_names) {
|
||||
this.name = country_name;
|
||||
this.zones = zone_names;
|
||||
}
|
||||
|
||||
/************************************
|
||||
Current Timezone
|
||||
************************************/
|
||||
|
||||
function OffsetAt(at) {
|
||||
var timeString = at.toTimeString();
|
||||
var abbr = timeString.match(/\([a-z ]+\)/i);
|
||||
if (abbr && abbr[0]) {
|
||||
// 17:56:31 GMT-0600 (CST)
|
||||
// 17:56:31 GMT-0600 (Central Standard Time)
|
||||
abbr = abbr[0].match(/[A-Z]/g);
|
||||
abbr = abbr ? abbr.join('') : undefined;
|
||||
} else {
|
||||
// 17:56:31 CST
|
||||
// 17:56:31 GMT+0800 (台北標準時間)
|
||||
abbr = timeString.match(/[A-Z]{3,5}/g);
|
||||
abbr = abbr ? abbr[0] : undefined;
|
||||
}
|
||||
|
||||
if (abbr === 'GMT') {
|
||||
abbr = undefined;
|
||||
}
|
||||
|
||||
this.at = +at;
|
||||
this.abbr = abbr;
|
||||
this.offset = at.getTimezoneOffset();
|
||||
}
|
||||
|
||||
function ZoneScore(zone) {
|
||||
this.zone = zone;
|
||||
this.offsetScore = 0;
|
||||
this.abbrScore = 0;
|
||||
}
|
||||
|
||||
ZoneScore.prototype.scoreOffsetAt = function (offsetAt) {
|
||||
this.offsetScore += Math.abs(this.zone.utcOffset(offsetAt.at) - offsetAt.offset);
|
||||
if (this.zone.abbr(offsetAt.at).replace(/[^A-Z]/g, '') !== offsetAt.abbr) {
|
||||
this.abbrScore++;
|
||||
}
|
||||
};
|
||||
|
||||
function findChange(low, high) {
|
||||
var mid, diff;
|
||||
|
||||
while ((diff = ((high.at - low.at) / 12e4 | 0) * 6e4)) {
|
||||
mid = new OffsetAt(new Date(low.at + diff));
|
||||
if (mid.offset === low.offset) {
|
||||
low = mid;
|
||||
} else {
|
||||
high = mid;
|
||||
}
|
||||
}
|
||||
|
||||
return low;
|
||||
}
|
||||
|
||||
function userOffsets() {
|
||||
var startYear = new Date().getFullYear() - 2,
|
||||
last = new OffsetAt(new Date(startYear, 0, 1)),
|
||||
offsets = [last],
|
||||
change, next, i;
|
||||
|
||||
for (i = 1; i < 48; i++) {
|
||||
next = new OffsetAt(new Date(startYear, i, 1));
|
||||
if (next.offset !== last.offset) {
|
||||
change = findChange(last, next);
|
||||
offsets.push(change);
|
||||
offsets.push(new OffsetAt(new Date(change.at + 6e4)));
|
||||
}
|
||||
last = next;
|
||||
}
|
||||
|
||||
for (i = 0; i < 4; i++) {
|
||||
offsets.push(new OffsetAt(new Date(startYear + i, 0, 1)));
|
||||
offsets.push(new OffsetAt(new Date(startYear + i, 6, 1)));
|
||||
}
|
||||
|
||||
return offsets;
|
||||
}
|
||||
|
||||
function sortZoneScores (a, b) {
|
||||
if (a.offsetScore !== b.offsetScore) {
|
||||
return a.offsetScore - b.offsetScore;
|
||||
}
|
||||
if (a.abbrScore !== b.abbrScore) {
|
||||
return a.abbrScore - b.abbrScore;
|
||||
}
|
||||
if (a.zone.population !== b.zone.population) {
|
||||
return b.zone.population - a.zone.population;
|
||||
}
|
||||
return b.zone.name.localeCompare(a.zone.name);
|
||||
}
|
||||
|
||||
function addToGuesses (name, offsets) {
|
||||
var i, offset;
|
||||
arrayToInt(offsets);
|
||||
for (i = 0; i < offsets.length; i++) {
|
||||
offset = offsets[i];
|
||||
guesses[offset] = guesses[offset] || {};
|
||||
guesses[offset][name] = true;
|
||||
}
|
||||
}
|
||||
|
||||
function guessesForUserOffsets (offsets) {
|
||||
var offsetsLength = offsets.length,
|
||||
filteredGuesses = {},
|
||||
out = [],
|
||||
i, j, guessesOffset;
|
||||
|
||||
for (i = 0; i < offsetsLength; i++) {
|
||||
guessesOffset = guesses[offsets[i].offset] || {};
|
||||
for (j in guessesOffset) {
|
||||
if (guessesOffset.hasOwnProperty(j)) {
|
||||
filteredGuesses[j] = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
for (i in filteredGuesses) {
|
||||
if (filteredGuesses.hasOwnProperty(i)) {
|
||||
out.push(names[i]);
|
||||
}
|
||||
}
|
||||
|
||||
return out;
|
||||
}
|
||||
|
||||
function rebuildGuess () {
|
||||
|
||||
// use Intl API when available and returning valid time zone
|
||||
try {
|
||||
var intlName = Intl.DateTimeFormat().resolvedOptions().timeZone;
|
||||
if (intlName && intlName.length > 3) {
|
||||
var name = names[normalizeName(intlName)];
|
||||
if (name) {
|
||||
return name;
|
||||
}
|
||||
logError("Moment Timezone found " + intlName + " from the Intl api, but did not have that data loaded.");
|
||||
}
|
||||
} catch (e) {
|
||||
// Intl unavailable, fall back to manual guessing.
|
||||
}
|
||||
|
||||
var offsets = userOffsets(),
|
||||
offsetsLength = offsets.length,
|
||||
guesses = guessesForUserOffsets(offsets),
|
||||
zoneScores = [],
|
||||
zoneScore, i, j;
|
||||
|
||||
for (i = 0; i < guesses.length; i++) {
|
||||
zoneScore = new ZoneScore(getZone(guesses[i]), offsetsLength);
|
||||
for (j = 0; j < offsetsLength; j++) {
|
||||
zoneScore.scoreOffsetAt(offsets[j]);
|
||||
}
|
||||
zoneScores.push(zoneScore);
|
||||
}
|
||||
|
||||
zoneScores.sort(sortZoneScores);
|
||||
|
||||
return zoneScores.length > 0 ? zoneScores[0].zone.name : undefined;
|
||||
}
|
||||
|
||||
function guess (ignoreCache) {
|
||||
if (!cachedGuess || ignoreCache) {
|
||||
cachedGuess = rebuildGuess();
|
||||
}
|
||||
return cachedGuess;
|
||||
}
|
||||
|
||||
/************************************
|
||||
Global Methods
|
||||
************************************/
|
||||
|
||||
function normalizeName (name) {
|
||||
return (name || '').toLowerCase().replace(/\//g, '_');
|
||||
}
|
||||
|
||||
function addZone (packed) {
|
||||
var i, name, split, normalized;
|
||||
|
||||
if (typeof packed === "string") {
|
||||
packed = [packed];
|
||||
}
|
||||
|
||||
for (i = 0; i < packed.length; i++) {
|
||||
split = packed[i].split('|');
|
||||
name = split[0];
|
||||
normalized = normalizeName(name);
|
||||
zones[normalized] = packed[i];
|
||||
names[normalized] = name;
|
||||
addToGuesses(normalized, split[2].split(' '));
|
||||
}
|
||||
}
|
||||
|
||||
function getZone (name, caller) {
|
||||
|
||||
name = normalizeName(name);
|
||||
|
||||
var zone = zones[name];
|
||||
var link;
|
||||
|
||||
if (zone instanceof Zone) {
|
||||
return zone;
|
||||
}
|
||||
|
||||
if (typeof zone === 'string') {
|
||||
zone = new Zone(zone);
|
||||
zones[name] = zone;
|
||||
return zone;
|
||||
}
|
||||
|
||||
// Pass getZone to prevent recursion more than 1 level deep
|
||||
if (links[name] && caller !== getZone && (link = getZone(links[name], getZone))) {
|
||||
zone = zones[name] = new Zone();
|
||||
zone._set(link);
|
||||
zone.name = names[name];
|
||||
return zone;
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
function getNames () {
|
||||
var i, out = [];
|
||||
|
||||
for (i in names) {
|
||||
if (names.hasOwnProperty(i) && (zones[i] || zones[links[i]]) && names[i]) {
|
||||
out.push(names[i]);
|
||||
}
|
||||
}
|
||||
|
||||
return out.sort();
|
||||
}
|
||||
|
||||
function getCountryNames () {
|
||||
return Object.keys(countries);
|
||||
}
|
||||
|
||||
function addLink (aliases) {
|
||||
var i, alias, normal0, normal1;
|
||||
|
||||
if (typeof aliases === "string") {
|
||||
aliases = [aliases];
|
||||
}
|
||||
|
||||
for (i = 0; i < aliases.length; i++) {
|
||||
alias = aliases[i].split('|');
|
||||
|
||||
normal0 = normalizeName(alias[0]);
|
||||
normal1 = normalizeName(alias[1]);
|
||||
|
||||
links[normal0] = normal1;
|
||||
names[normal0] = alias[0];
|
||||
|
||||
links[normal1] = normal0;
|
||||
names[normal1] = alias[1];
|
||||
}
|
||||
}
|
||||
|
||||
function addCountries (data) {
|
||||
var i, country_code, country_zones, split;
|
||||
if (!data || !data.length) return;
|
||||
for (i = 0; i < data.length; i++) {
|
||||
split = data[i].split('|');
|
||||
country_code = split[0].toUpperCase();
|
||||
country_zones = split[1].split(' ');
|
||||
countries[country_code] = new Country(
|
||||
country_code,
|
||||
country_zones
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
function getCountry (name) {
|
||||
name = name.toUpperCase();
|
||||
return countries[name] || null;
|
||||
}
|
||||
|
||||
function zonesForCountry(country, with_offset) {
|
||||
country = getCountry(country);
|
||||
|
||||
if (!country) return null;
|
||||
|
||||
var zones = country.zones.sort();
|
||||
|
||||
if (with_offset) {
|
||||
return zones.map(function (zone_name) {
|
||||
var zone = getZone(zone_name);
|
||||
return {
|
||||
name: zone_name,
|
||||
offset: zone.utcOffset(new Date())
|
||||
};
|
||||
});
|
||||
}
|
||||
|
||||
return zones;
|
||||
}
|
||||
|
||||
function loadData (data) {
|
||||
addZone(data.zones);
|
||||
addLink(data.links);
|
||||
addCountries(data.countries);
|
||||
tz.dataVersion = data.version;
|
||||
}
|
||||
|
||||
function zoneExists (name) {
|
||||
if (!zoneExists.didShowError) {
|
||||
zoneExists.didShowError = true;
|
||||
logError("moment.tz.zoneExists('" + name + "') has been deprecated in favor of !moment.tz.zone('" + name + "')");
|
||||
}
|
||||
return !!getZone(name);
|
||||
}
|
||||
|
||||
function needsOffset (m) {
|
||||
var isUnixTimestamp = (m._f === 'X' || m._f === 'x');
|
||||
return !!(m._a && (m._tzm === undefined) && !isUnixTimestamp);
|
||||
}
|
||||
|
||||
function logError (message) {
|
||||
if (typeof console !== 'undefined' && typeof console.error === 'function') {
|
||||
console.error(message);
|
||||
}
|
||||
}
|
||||
|
||||
/************************************
|
||||
moment.tz namespace
|
||||
************************************/
|
||||
|
||||
function tz (input) {
|
||||
var args = Array.prototype.slice.call(arguments, 0, -1),
|
||||
name = arguments[arguments.length - 1],
|
||||
zone = getZone(name),
|
||||
out = moment.utc.apply(null, args);
|
||||
|
||||
if (zone && !moment.isMoment(input) && needsOffset(out)) {
|
||||
out.add(zone.parse(out), 'minutes');
|
||||
}
|
||||
|
||||
out.tz(name);
|
||||
|
||||
return out;
|
||||
}
|
||||
|
||||
tz.version = VERSION;
|
||||
tz.dataVersion = '';
|
||||
tz._zones = zones;
|
||||
tz._links = links;
|
||||
tz._names = names;
|
||||
tz._countries = countries;
|
||||
tz.add = addZone;
|
||||
tz.link = addLink;
|
||||
tz.load = loadData;
|
||||
tz.zone = getZone;
|
||||
tz.zoneExists = zoneExists; // deprecated in 0.1.0
|
||||
tz.guess = guess;
|
||||
tz.names = getNames;
|
||||
tz.Zone = Zone;
|
||||
tz.unpack = unpack;
|
||||
tz.unpackBase60 = unpackBase60;
|
||||
tz.needsOffset = needsOffset;
|
||||
tz.moveInvalidForward = true;
|
||||
tz.moveAmbiguousForward = false;
|
||||
tz.countries = getCountryNames;
|
||||
tz.zonesForCountry = zonesForCountry;
|
||||
|
||||
/************************************
|
||||
Interface with Moment.js
|
||||
************************************/
|
||||
|
||||
var fn = moment.fn;
|
||||
|
||||
moment.tz = tz;
|
||||
|
||||
moment.defaultZone = null;
|
||||
|
||||
moment.updateOffset = function (mom, keepTime) {
|
||||
var zone = moment.defaultZone,
|
||||
offset;
|
||||
|
||||
if (mom._z === undefined) {
|
||||
if (zone && needsOffset(mom) && !mom._isUTC) {
|
||||
mom._d = moment.utc(mom._a)._d;
|
||||
mom.utc().add(zone.parse(mom), 'minutes');
|
||||
}
|
||||
mom._z = zone;
|
||||
}
|
||||
if (mom._z) {
|
||||
offset = mom._z.utcOffset(mom);
|
||||
if (Math.abs(offset) < 16) {
|
||||
offset = offset / 60;
|
||||
}
|
||||
if (mom.utcOffset !== undefined) {
|
||||
var z = mom._z;
|
||||
mom.utcOffset(-offset, keepTime);
|
||||
mom._z = z;
|
||||
} else {
|
||||
mom.zone(offset, keepTime);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
fn.tz = function (name, keepTime) {
|
||||
if (name) {
|
||||
if (typeof name !== 'string') {
|
||||
throw new Error('Time zone name must be a string, got ' + name + ' [' + typeof name + ']');
|
||||
}
|
||||
this._z = getZone(name);
|
||||
if (this._z) {
|
||||
moment.updateOffset(this, keepTime);
|
||||
} else {
|
||||
logError("Moment Timezone has no data for " + name + ". See http://momentjs.com/timezone/docs/#/data-loading/.");
|
||||
}
|
||||
return this;
|
||||
}
|
||||
if (this._z) { return this._z.name; }
|
||||
};
|
||||
|
||||
function abbrWrap (old) {
|
||||
return function () {
|
||||
if (this._z) { return this._z.abbr(this); }
|
||||
return old.call(this);
|
||||
};
|
||||
}
|
||||
|
||||
function resetZoneWrap (old) {
|
||||
return function () {
|
||||
this._z = null;
|
||||
return old.apply(this, arguments);
|
||||
};
|
||||
}
|
||||
|
||||
function resetZoneWrap2 (old) {
|
||||
return function () {
|
||||
if (arguments.length > 0) this._z = null;
|
||||
return old.apply(this, arguments);
|
||||
};
|
||||
}
|
||||
|
||||
fn.zoneName = abbrWrap(fn.zoneName);
|
||||
fn.zoneAbbr = abbrWrap(fn.zoneAbbr);
|
||||
fn.utc = resetZoneWrap(fn.utc);
|
||||
fn.local = resetZoneWrap(fn.local);
|
||||
fn.utcOffset = resetZoneWrap2(fn.utcOffset);
|
||||
|
||||
moment.tz.setDefault = function(name) {
|
||||
if (major < 2 || (major === 2 && minor < 9)) {
|
||||
logError('Moment Timezone setDefault() requires Moment.js >= 2.9.0. You are using Moment.js ' + moment.version + '.');
|
||||
}
|
||||
moment.defaultZone = name ? getZone(name) : null;
|
||||
return moment;
|
||||
};
|
||||
|
||||
// Cloning a moment should include the _z property.
|
||||
var momentProperties = moment.momentProperties;
|
||||
if (Object.prototype.toString.call(momentProperties) === '[object Array]') {
|
||||
// moment 2.8.1+
|
||||
momentProperties.push('_z');
|
||||
momentProperties.push('_a');
|
||||
} else if (momentProperties) {
|
||||
// moment 2.7.0
|
||||
momentProperties._z = null;
|
||||
}
|
||||
|
||||
// INJECT DATA
|
||||
|
||||
return moment;
|
||||
}));
|
3181
node/node_modules/moment-timezone/package-lock.json
generated
vendored
Normal file
3181
node/node_modules/moment-timezone/package-lock.json
generated
vendored
Normal file
File diff suppressed because it is too large
Load diff
84
node/node_modules/moment-timezone/package.json
generated
vendored
Normal file
84
node/node_modules/moment-timezone/package.json
generated
vendored
Normal file
|
@ -0,0 +1,84 @@
|
|||
{
|
||||
"_from": "moment-timezone@^0.5.31",
|
||||
"_id": "moment-timezone@0.5.31",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-+GgHNg8xRhMXfEbv81iDtrVeTcWt0kWmTEY1XQK14dICTXnWJnT0dxdlPspwqF3keKMVPXwayEsk1DI0AA/jdA==",
|
||||
"_location": "/moment-timezone",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "range",
|
||||
"registry": true,
|
||||
"raw": "moment-timezone@^0.5.31",
|
||||
"name": "moment-timezone",
|
||||
"escapedName": "moment-timezone",
|
||||
"rawSpec": "^0.5.31",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "^0.5.31"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/moment-timezone/-/moment-timezone-0.5.31.tgz",
|
||||
"_shasum": "9c40d8c5026f0c7ab46eda3d63e49c155148de05",
|
||||
"_spec": "moment-timezone@^0.5.31",
|
||||
"_where": "/Users/sclay/projects/newsblur/node",
|
||||
"author": {
|
||||
"name": "Tim Wood",
|
||||
"email": "washwithcare@gmail.com",
|
||||
"url": "http://timwoodcreates.com/"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/moment/moment-timezone/issues"
|
||||
},
|
||||
"bundleDependencies": false,
|
||||
"dependencies": {
|
||||
"moment": ">= 2.9.0"
|
||||
},
|
||||
"deprecated": false,
|
||||
"description": "Parse and display moments in any timezone.",
|
||||
"devDependencies": {
|
||||
"grunt": "1.0.4",
|
||||
"grunt-contrib-clean": "^2.0.0",
|
||||
"grunt-contrib-jshint": "^2.1.0",
|
||||
"grunt-contrib-nodeunit": "^2.0.0",
|
||||
"grunt-contrib-uglify": "^4.0.1",
|
||||
"grunt-exec": "^3.0.0",
|
||||
"typescript": "^3.5.1"
|
||||
},
|
||||
"engines": {
|
||||
"node": "*"
|
||||
},
|
||||
"homepage": "http://momentjs.com/timezone/",
|
||||
"jspm": {
|
||||
"main": "builds/moment-timezone-with-data",
|
||||
"shim": {
|
||||
"moment-timezone": {
|
||||
"deps": [
|
||||
"moment"
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"keywords": [
|
||||
"moment",
|
||||
"date",
|
||||
"time",
|
||||
"timezone",
|
||||
"olson",
|
||||
"iana",
|
||||
"zone",
|
||||
"tz"
|
||||
],
|
||||
"license": "MIT",
|
||||
"main": "./index.js",
|
||||
"name": "moment-timezone",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/moment/moment-timezone.git"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "grunt"
|
||||
},
|
||||
"typings": "./index.d.ts",
|
||||
"version": "0.5.31"
|
||||
}
|
942
node/node_modules/moment/CHANGELOG.md
generated
vendored
Normal file
942
node/node_modules/moment/CHANGELOG.md
generated
vendored
Normal file
|
@ -0,0 +1,942 @@
|
|||
Changelog
|
||||
=========
|
||||
|
||||
### 2.26.0 [See full changelog](https://gist.github.com/marwahaha/0725c40740560854a849b096ea7b7590)
|
||||
|
||||
* Release May 19, 2020
|
||||
|
||||
TypeScript fixes and many locale improvements
|
||||
|
||||
### 2.25.3
|
||||
|
||||
* Release May 4, 2020
|
||||
|
||||
Remove package.json module property. It looks like webpack behaves differently
|
||||
for modules loaded via module vs jsnext:main.
|
||||
|
||||
### 2.25.2
|
||||
|
||||
* Release May 4, 2020
|
||||
|
||||
This release includes ES Module bundled moment, separate from it's source code
|
||||
under dist/ folder. This might alleviate issues with finding the `./locale
|
||||
subfolder for loading locales. This might also mean now webpack will bundle all
|
||||
locales automatically, unless told otherwise.
|
||||
|
||||
### 2.25.1
|
||||
|
||||
* Release May 1, 2020
|
||||
|
||||
This is a quick patch release to address some of the issues raised after
|
||||
releasing 2.25.0.
|
||||
|
||||
* [2e268635](https://github.com/moment/moment/commit/2e268635) [misc] Revert #5269 due to webpack warning
|
||||
* [226799e1](https://github.com/moment/moment/commit/226799e1) [locale] fil: Fix metadata comment
|
||||
* [a83a521](https://github.com/moment/moment/commit/a83a521) [bugfix] Fix typeoff usages
|
||||
* [e324334](https://github.com/moment/moment/commit/e324334) [pkg] Add ts3.1-typings in npm package
|
||||
* [28cc23e](https://github.com/moment/moment/commit/28cc23e) [misc] Remove deleted generated locale en-SG
|
||||
|
||||
### 2.25.0 [See full changelog](https://gist.github.com/ichernev/6148e64df2427e455b10ce6a18de1a65)
|
||||
|
||||
* Release May 1, 2020
|
||||
|
||||
* [#4611](https://github.com/moment/moment/issues/4611) [022dc038](https://github.com/moment/moment/commit/022dc038) [feature] Support for strict string parsing, fixes [#2469](https://github.com/moment/moment/issues/2469)
|
||||
* [#4599](https://github.com/moment/moment/issues/4599) [4b615b9d](https://github.com/moment/moment/commit/4b615b9d) [feature] Add support for eras in en and jp
|
||||
* [#4296](https://github.com/moment/moment/issues/4296) [757d4ff8](https://github.com/moment/moment/commit/757d4ff8) [feature] Accept custom relative thresholds in duration.humanize
|
||||
|
||||
* 18 bigfixes
|
||||
* 36 locale fixes
|
||||
* 5 new locales (oc-lnc, zh-mo, en-in, gom-deva, fil)
|
||||
|
||||
### 2.24.0 [See full changelog](https://gist.github.com/marwahaha/12366fe45bee328f33acf125d4cd540e)
|
||||
|
||||
* Release Jan 21, 2019
|
||||
|
||||
* [#4338](https://github.com/moment/moment/pull/4338) [bugfix] Fix startOf/endOf DST issues while boosting performance
|
||||
* [#4553](https://github.com/moment/moment/pull/4553) [feature] Add localeSort param to Locale weekday methods
|
||||
* [#4887](https://github.com/moment/moment/pull/4887) [bugfix] Make Duration#as work with quarters
|
||||
* 3 new locales (it-ch, ga, en-SG)
|
||||
* Lots of locale improvements
|
||||
|
||||
### 2.23.0 [See full changelog](https://gist.github.com/marwahaha/eadb7ac11b761290399a576f8b2419a5)
|
||||
|
||||
* Release Dec 12, 2018
|
||||
|
||||
* [#4863](https://github.com/moment/moment/pull/4863) [new locale] added Kurdish language (ku)
|
||||
* [#4417](https://github.com/moment/moment/pull/4417) [bugfix] isBetween should return false for invalid dates
|
||||
* [#4700](https://github.com/moment/moment/pull/4700) [bugfix] Fix [#4698](https://github.com/moment/moment/pull/4698): Use ISO WeekYear for HTML5_FMT.WEEK
|
||||
* [#4563](https://github.com/moment/moment/pull/4563) [feature] Fix [#4518](https://github.com/moment/moment/pull/4518): Add support to add/subtract ISO weeks
|
||||
* other locale changes, build process changes, typos
|
||||
|
||||
### 2.22.2 [See full changelog](https://gist.github.com/marwahaha/4d992c13c2dbc0f59d4d8acae1dc6d3a)
|
||||
|
||||
* Release May 31, 2018
|
||||
|
||||
* [#4564](https://github.com/moment/moment/pull/4564) [bugfix] Avoid using trim()
|
||||
* [#4453](https://github.com/moment/moment/pull/4453) [bugfix] Treat periods as periods, not regex-anything period, for weekday parsing in strict mode.
|
||||
* Minor locale improvements (pa-in, be, az)
|
||||
|
||||
### 2.22.1 [See full changelog](https://gist.github.com/marwahaha/ff2cd13d0eda08afb7a237b10aae558c)
|
||||
|
||||
* Release Apr 14, 2018
|
||||
|
||||
* [#4495](https://github.com/moment/moment/pull/4495) [bugfix] Added HTML5_FMT to moment.d.ts
|
||||
* Minor locale improvements
|
||||
* QUnit upgrade and coveralls reporting
|
||||
|
||||
### 2.22.0 [See full changelog](https://gist.github.com/marwahaha/ae895025dac3f0641fa9ec2e36d282bb)
|
||||
|
||||
* Release Mar 30, 2018
|
||||
|
||||
* [#4423](https://github.com/moment/moment/pull/4423) [new locale] Added Mongolian locale mn
|
||||
* Various locale improvements
|
||||
* Minor misc changes
|
||||
|
||||
### 2.21.0 [See full changelog](https://gist.github.com/marwahaha/80d19ef882b71df1948df7865efdd40e)
|
||||
|
||||
* Release Mar 2, 2018
|
||||
|
||||
* [#4391](https://github.com/moment/moment/pull/4391) [bugfix] Fix [#4390](https://github.com/moment/moment/pull/4390): use offset properly in toISOString
|
||||
* [#4310](https://github.com/moment/moment/pull/4310) [bugfix] Fix [#3883](https://github.com/moment/moment/pull/3883) lazy load parentLocale in defineLocale, fallback to global if missing
|
||||
* [#4085](https://github.com/moment/moment/pull/4085) [misc] Print console warning when setting non-existent locales
|
||||
* [#4371](https://github.com/moment/moment/pull/4371) [misc] fix deprecated rollup options
|
||||
* New locales: ug-cn, en-il, tg
|
||||
* Various locale improvements
|
||||
|
||||
### 2.20.1 [See changelog](https://gist.github.com/marwahaha/d72c1cb22076373be889b16272cbd187)
|
||||
|
||||
* Release Dec 18, 2017
|
||||
|
||||
* [#4359](https://github.com/moment/moment/pull/4359) [locale] Fix Arabic locale for months (again)
|
||||
* [#4357](https://github.com/moment/moment/pull/4357) [misc] Add optional parameter keepOffset to toISOString
|
||||
|
||||
### 2.20.0 [See full changelog](https://gist.github.com/marwahaha/e0d4135fbf8bb75fa85c4aa2bddc5031)
|
||||
|
||||
* Release Dec 16, 2017
|
||||
|
||||
* [#4312](https://github.com/moment/moment/pull/4312) [bugfix] Fix [#4251](https://github.com/moment/moment/pull/4251): Avoid RFC2822 in utc() test
|
||||
* [#4240](https://github.com/moment/moment/pull/4240) [bugfix] Fix incorrect strict parsing with full-width parentheses
|
||||
* [#4341](https://github.com/moment/moment/pull/4341) [feature] Prevent toISOString converting to UTC (issue [#1751](https://github.com/moment/moment/pull/1751))
|
||||
* [#4154](https://github.com/moment/moment/pull/4154) [feature] add format constants to support output to HTML5 input type formats (see [#3928](https://github.com/moment/moment/pull/3928))
|
||||
* [#4143](https://github.com/moment/moment/pull/4143) [new locale] mt: Maltese language
|
||||
* [#4183](https://github.com/moment/moment/pull/4183) [locale] Relative seconds i18n
|
||||
* Various other locale improvements
|
||||
|
||||
### 2.19.4 [See changelog](https://gist.github.com/marwahaha/d3b7b0ddf4bdae512244f16e8cc59efb)
|
||||
|
||||
* Release Dec 10, 2017
|
||||
|
||||
* [#4332](https://github.com/moment/moment/pull/4332) [bugfix] Fix weekday verification for UTC and offset days (fixes [#4227](https://github.com/moment/moment/pull/4227))
|
||||
* [#4336](https://github.com/moment/moment/pull/4336) [bugfix] Fix [#4334](https://github.com/moment/moment/pull/4334): Remove unused function call argument
|
||||
* [#4246](https://github.com/moment/moment/pull/4246) [misc] Add 'ss' relative time key to typescript definition
|
||||
|
||||
### 2.19.3 [See changelog](https://gist.github.com/marwahaha/3654006bc0c2e522451c08d12c0bfabf)
|
||||
|
||||
* Release Nov 29, 2017
|
||||
|
||||
* [#4326](https://github.com/moment/moment/pull/4326) [bugfix] Fix for ReDOS vulnerability (see [#4163](https://github.com/moment/moment/issues/4163))
|
||||
* [#4289](https://github.com/moment/moment/pull/4289) [misc] Fix spelling and formatting for U.S. for es-us
|
||||
|
||||
### 2.19.2 [See changelog (it's the same >:D)](https://gist.github.com/ichernev/76b1a3f33d3a8ff9665ce434a45221d0)
|
||||
|
||||
* Release Nov 11, 2017
|
||||
|
||||
* [#4255](https://github.com/moment/moment/pull/4255) [bugfix] Fix year setter for random days in a leap year, fixes [#4238](https://github.com/moment/moment/issues/4238)
|
||||
* [#4242](https://github.com/moment/moment/pull/4242) [bugfix] updateLocale now tries to load parent, fixes [#3626](https://github.com/moment/moment/issues/3626)
|
||||
|
||||
### 2.19.1
|
||||
|
||||
* Release Oct 11, 2017
|
||||
|
||||
Make react native and webpack both work
|
||||
* #4225 #4226 #4232
|
||||
|
||||
### 2.19.0 [See full changelog](https://gist.github.com/ichernev/5f3f4eb02761b4f765a0cccf02cec603)
|
||||
|
||||
* Release Oct 10, 2017
|
||||
|
||||
## Fix React Native 0.49+ crash
|
||||
* [#4213](https://github.com/moment/moment/pull/4213) [critical] Rename dynamic
|
||||
require to avoid React Native crash
|
||||
* [#4214](https://github.com/moment/moment/pull/4214) [fixup] Move require
|
||||
rename inside try/catch, fixes
|
||||
[#4213](https://github.com/moment/moment/issues/4213)
|
||||
|
||||
## Features
|
||||
|
||||
* [#3735](https://github.com/moment/moment/pull/3735) [feature] Ignore NaN values in setters
|
||||
* [#4106](https://github.com/moment/moment/pull/4106) [fixup] Drop isNumeric utility fn, fixes [#3735](https://github.com/moment/moment/issues/3735)
|
||||
* [#4080](https://github.com/moment/moment/pull/4080) [feature] Implement a clone method for durations, fixes [#4078](https://github.com/moment/moment/issues/4078)
|
||||
* [#4215](https://github.com/moment/moment/pull/4215) [misc] TS: Add duration.clone(), for [#4080](https://github.com/moment/moment/issues/4080)
|
||||
|
||||
## Packaging
|
||||
|
||||
* [#4003](https://github.com/moment/moment/pull/4003) [pkg] bower: Remove tests from package
|
||||
* [#3904](https://github.com/moment/moment/pull/3904) [pkg] jsnext:main -> module in package.json
|
||||
* [#4060](https://github.com/moment/moment/pull/4060) [pkg] Account for new rollup interface
|
||||
|
||||
Bugfixes, new locales, locale fixes etc...
|
||||
|
||||
### 2.18.1
|
||||
|
||||
* Release Mar 22, 2017
|
||||
|
||||
* [#3853](https://github.com/moment/moment/pull/3853) [misc] Fix invalid whitespace character causing inability to parse
|
||||
moment.js
|
||||
|
||||
### 2.18.0 [See full changelog](https://gist.github.com/ichernev/78920c5a1e419fb28c6e4546d1b7235c)
|
||||
|
||||
* Release Mar 18, 2017
|
||||
|
||||
## Features
|
||||
|
||||
* [#3708](https://github.com/moment/moment/pull/3708) [feature] RFC2822 parsing
|
||||
* [#3611](https://github.com/moment/moment/pull/3611) [feature] Durations gain validity
|
||||
* [#3738](https://github.com/moment/moment/pull/3738) [feature] Enable relative time for multiple seconds, request [#2558](https://github.com/moment/moment/issues/2558)
|
||||
* [#3766](https://github.com/moment/moment/pull/3766) [feature] Add support for k and kk format parsing
|
||||
|
||||
## Bugfixes
|
||||
|
||||
* [#3643](https://github.com/moment/moment/pull/3643) [bugfix] Fixes [#3520](https://github.com/moment/moment/issues/3520), parseZone incorrectly handled minutes under 16
|
||||
* [#3710](https://github.com/moment/moment/pull/3710) [bugfix] Fixes [#3632](https://github.com/moment/moment/issues/3632), toISOString returns null for invalid date
|
||||
* [#3787](https://github.com/moment/moment/pull/3787) [bugfix] Fixes [#3717](https://github.com/moment/moment/issues/3717), ensure day-of-year is non-zero
|
||||
* [#3780](https://github.com/moment/moment/pull/3780) [bugfix] Fixes [#3765](https://github.com/moment/moment/issues/3765): Ensure year 0 is formatted with YYYY
|
||||
* [#3806](https://github.com/moment/moment/pull/3806) [bugfix] Fixes [#3805](https://github.com/moment/moment/issues/3805), fix locale month getters for standalone/format cases
|
||||
|
||||
7 new locales, many locale improvements and some misc changes
|
||||
|
||||
### 2.17.1 [Also available here](https://gist.github.com/ichernev/f38280b2b29c4932914a6d3a4e50bfb2)
|
||||
* Release Dec 03, 2016
|
||||
|
||||
* [#3638](https://github.com/moment/moment/pull/3638) [misc] TS: Make typescript definitions work with 1.x
|
||||
* [#3628](https://github.com/moment/moment/pull/3628) [misc] Adds "sign CLA" link to `CONTRIBUTING.md`
|
||||
* [#3640](https://github.com/moment/moment/pull/3640) [misc] Fix locale issues
|
||||
|
||||
### 2.17.0 [Also available here](https://gist.github.com/ichernev/ed58f76fb95205eeac653d719972b90c)
|
||||
* Release Nov 22, 2016
|
||||
|
||||
* [#3435](https://github.com/moment/moment/pull/3435) [new locale] yo: Yoruba (Nigeria) locale
|
||||
* [#3595](https://github.com/moment/moment/pull/3595) [bugfix] Fix accidental reference to global "value" variable
|
||||
* [#3506](https://github.com/moment/moment/pull/3506) [bugfix] Fix invalid moments returning valid dates to method calls
|
||||
* [#3563](https://github.com/moment/moment/pull/3563) [locale] ca: Change future relative time
|
||||
* [#3504](https://github.com/moment/moment/pull/3504) [tests] Fixes [#3463](https://github.com/moment/moment/issues/3463), parseZone not handling Z correctly (tests only)
|
||||
* [#3591](https://github.com/moment/moment/pull/3591) [misc] typescript: update typescript to 2.0.8, add strictNullChecks=true
|
||||
* [#3597](https://github.com/moment/moment/pull/3597) [misc] Fixed capitalization in nuget spec
|
||||
|
||||
### 2.16.0 [See full changelog](https://gist.github.com/ichernev/17bffc1005a032cb1a8ac4c1558b4994)
|
||||
* Release Nov 9, 2016
|
||||
|
||||
## Features
|
||||
* [#3530](https://github.com/moment/moment/pull/3530) [feature] Check whether input is date before checking if format is array
|
||||
* [#3515](https://github.com/moment/moment/pull/3515) [feature] Fix [#2300](https://github.com/moment/moment/issues/2300): Default to current week.
|
||||
|
||||
## Bugfixes
|
||||
* [#3546](https://github.com/moment/moment/pull/3546) [bugfix] Implement lazy-loading of child locales with missing prents
|
||||
* [#3523](https://github.com/moment/moment/pull/3523) [bugfix] parseZone should handle UTC
|
||||
* [#3502](https://github.com/moment/moment/pull/3502) [bugfix] Fix [#3500](https://github.com/moment/moment/issues/3500): ISO 8601 parsing should match the full string, not the beginning of the string.
|
||||
* [#3581](https://github.com/moment/moment/pull/3581) [bugfix] Fix parseZone, redo [#3504](https://github.com/moment/moment/issues/3504), fix [#3463](https://github.com/moment/moment/issues/3463)
|
||||
|
||||
## New Locales
|
||||
* [#3416](https://github.com/moment/moment/pull/3416) [new locale] nl-be: Dutch (Belgium) locale
|
||||
* [#3393](https://github.com/moment/moment/pull/3393) [new locale] ar-dz: Arabic (Algeria) locale
|
||||
* [#3342](https://github.com/moment/moment/pull/3342) [new locale] tet: Tetun Dili (East Timor) locale
|
||||
|
||||
And more locale, build and typescript improvements
|
||||
|
||||
### 2.15.2
|
||||
* Release Oct 23, 2016
|
||||
* [#3525](https://github.com/moment/moment/pull/3525) Speedup month standalone/format regexes **(IMPORTANT)**
|
||||
* [#3466](https://github.com/moment/moment/pull/3466) Fix typo of Javanese
|
||||
|
||||
### 2.15.1
|
||||
* Release Sept 20, 2016
|
||||
* [#3438](https://github.com/moment/moment/pull/3438) Fix locale autoload, revert [#3344](https://github.com/moment/moment/pull/3344)
|
||||
|
||||
### 2.15.0 [See full changelog](https://gist.github.com/ichernev/10e1c5bf647545c72ca30e9628a09ed3)
|
||||
- Release Sept 12, 2016
|
||||
|
||||
## New Locales
|
||||
* [#3255](https://github.com/moment/moment/pull/3255) [new locale] mi: Maori language
|
||||
* [#3267](https://github.com/moment/moment/pull/3267) [new locale] ar-ly: Arabic (Libya) locale
|
||||
* [#3333](https://github.com/moment/moment/pull/3333) [new locale] zh-hk: Chinese (Hong Kong) locale
|
||||
|
||||
## Bugfixes
|
||||
* [#3276](https://github.com/moment/moment/pull/3276) [bugfix] duration: parser: Support ms durations in .NET syntax
|
||||
* [#3312](https://github.com/moment/moment/pull/3312) [bugfix] locales: Enable locale-data getters without moment (fixes [#3284](https://github.com/moment/moment/issues/3284))
|
||||
* [#3381](https://github.com/moment/moment/pull/3381) [bugfix] parsing: Fix parseZone without timezone in string, fixes [#3083](https://github.com/moment/moment/issues/3083)
|
||||
* [#3383](https://github.com/moment/moment/pull/3383) [bugfix] toJSON: Fix isValid so that toJSON works after a moment is frozen
|
||||
* [#3427](https://github.com/moment/moment/pull/3427) [bugfix] ie8: Fix IE8 (regression in 2.14.x)
|
||||
|
||||
## Packaging
|
||||
* [#3299](https://github.com/moment/moment/pull/3299) [pkg] npm: Do not include .npmignore in npm package
|
||||
* [#3273](https://github.com/moment/moment/pull/3273) [pkg] jspm: Include moment.d.ts file in package
|
||||
* [#3344](https://github.com/moment/moment/pull/3344) [pkg] exports: use module.require for nodejs
|
||||
|
||||
Also some locale and typescript improvements
|
||||
|
||||
### 2.14.1
|
||||
- Release July 20, 2016
|
||||
* [#3280](https://github.com/moment/moment/pull/3280) Fix typescript definitions
|
||||
|
||||
|
||||
### 2.14.0 [See full changelog](https://gist.github.com/ichernev/812e79ac36a7829a22598fe964bfc18a)
|
||||
|
||||
- Release July 20, 2016
|
||||
|
||||
## New Features
|
||||
* [#3233](https://github.com/moment/moment/pull/3233) Introduce month.isFormat for format/standalone discovery
|
||||
* [#2848](https://github.com/moment/moment/pull/2848) Allow user to get/set the rounding method used when calculating relative time
|
||||
* [#3112](https://github.com/moment/moment/pull/3112) optimize configFromStringAndFormat
|
||||
* [#3147](https://github.com/moment/moment/pull/3147) Call calendar format function with moment context
|
||||
* [#3160](https://github.com/moment/moment/pull/3160) deprecate isDSTShifted
|
||||
* [#3175](https://github.com/moment/moment/pull/3175) make moment calendar extensible with ad-hoc options
|
||||
* [#3191](https://github.com/moment/moment/pull/3191) toDate returns a copy of the internal date object
|
||||
* [#3192](https://github.com/moment/moment/pull/3192) Adding support for rollup import.
|
||||
* [#3238](https://github.com/moment/moment/pull/3238) Handle empty object and empty array for creation as now
|
||||
* [#3082](https://github.com/moment/moment/pull/3082) Use relative AMD moment dependency
|
||||
|
||||
## Bugfixes
|
||||
* [#3241](https://github.com/moment/moment/pull/3241) Escape all 24 mixed pieces, not only first 12 in computeMonthsParse
|
||||
* [#3008](https://github.com/moment/moment/pull/3008) Object setter orders sets based on size of unit
|
||||
* [#3177](https://github.com/moment/moment/pull/3177) Bug Fix [#2704](https://github.com/moment/moment/pull/2704) - isoWeekday(String) inconsistent with isoWeekday(Number)
|
||||
* [#3230](https://github.com/moment/moment/pull/3230) fix passing date with format string to ignore format string
|
||||
* [#3232](https://github.com/moment/moment/pull/3232) Fix negative 0 in certain diff cases
|
||||
* [#3235](https://github.com/moment/moment/pull/3235) Use proper locale inheritance for the base locale, fixes [#3137](https://github.com/moment/moment/pull/3137)
|
||||
|
||||
Plus es-do locale and locale bugfixes
|
||||
|
||||
### 2.13.0 [See full changelog](https://gist.github.com/ichernev/0132fcf5b61f7fc140b0bb0090480d49)
|
||||
- Release April 18, 2016
|
||||
|
||||
## Enhancements:
|
||||
* [#2982](https://github.com/moment/moment/pull/2982) Add 'date' as alias to 'day' for startOf() and endOf().
|
||||
* [#2955](https://github.com/moment/moment/pull/2955) Add parsing negative components in durations when ISO 8601
|
||||
* [#2991](https://github.com/moment/moment/pull/2991) isBetween support for both open and closed intervals
|
||||
* [#3105](https://github.com/moment/moment/pull/3105) Add localeSorted argument to weekday listers
|
||||
* [#3102](https://github.com/moment/moment/pull/3102) Add k and kk formatting tokens
|
||||
|
||||
## Bugfixes
|
||||
* [#3109](https://github.com/moment/moment/pull/3109) Fix [#1756](https://github.com/moment/moment/issues/1756) Resolved thread-safe issue on server side.
|
||||
* [#3078](https://github.com/moment/moment/pull/3078) Fix parsing for months/weekdays with weird characters
|
||||
* [#3098](https://github.com/moment/moment/pull/3098) Use Z suffix when in UTC mode ([#3020](https://github.com/moment/moment/issues/3020))
|
||||
* [#2995](https://github.com/moment/moment/pull/2995) Fix floating point rounding errors in durations
|
||||
* [#3059](https://github.com/moment/moment/pull/3059) fix bug where diff returns -0 in month-related diffs
|
||||
* [#3045](https://github.com/moment/moment/pull/3045) Fix mistaking any input for 'a' token
|
||||
* [#2877](https://github.com/moment/moment/pull/2877) Use explicit .valueOf() calls instead of coercion
|
||||
* [#3036](https://github.com/moment/moment/pull/3036) Year setter should keep time when DST changes
|
||||
|
||||
Plus 3 new locales and locale fixes.
|
||||
|
||||
### 2.12.0 [See full changelog](https://gist.github.com/ichernev/6e5bfdf8d6522fc4ac73)
|
||||
|
||||
- Release March 7, 2016
|
||||
|
||||
## Enhancements:
|
||||
* [#2932](https://github.com/moment/moment/pull/2932) List loaded locales
|
||||
* [#2818](https://github.com/moment/moment/pull/2818) Parse ISO-8061 duration containing both day and week values
|
||||
* [#2774](https://github.com/moment/moment/pull/2774) Implement locale inheritance and locale updating
|
||||
|
||||
## Bugfixes:
|
||||
* [#2970](https://github.com/moment/moment/pull/2970) change add subtract to handle decimal values by rounding
|
||||
* [#2887](https://github.com/moment/moment/pull/2887) Fix toJSON casting of invalid moment
|
||||
* [#2897](https://github.com/moment/moment/pull/2897) parse string arguments for month() correctly, closes #2884
|
||||
* [#2946](https://github.com/moment/moment/pull/2946) Fix usage suggestions for min and max
|
||||
|
||||
## New locales:
|
||||
* [#2917](https://github.com/moment/moment/pull/2917) Locale Punjabi(Gurmukhi) India format conversion
|
||||
|
||||
And more
|
||||
|
||||
### 2.11.2 (Fix ReDoS attack vector)
|
||||
|
||||
- Release February 7, 2016
|
||||
|
||||
* [#2939](https://github.com/moment/moment/pull/2939) use full-string match to speed up aspnet regex match
|
||||
|
||||
### 2.11.1 [See full changelog](https://gist.github.com/ichernev/8ec3ee25b749b4cff3c2)
|
||||
|
||||
- Release January 9, 2016
|
||||
|
||||
## Bugfixes:
|
||||
* [#2881](https://github.com/moment/moment/pull/2881) Revert "Merge pull request #2746 from mbad0la:develop" Sep->Sept
|
||||
* [#2868](https://github.com/moment/moment/pull/2868) Add format and parse token Y, so it actually works
|
||||
* [#2865](https://github.com/moment/moment/pull/2865) Use typeof checks for undefined for global variables
|
||||
* [#2858](https://github.com/moment/moment/pull/2858) Fix Date mocking regression introduced in 2.11.0
|
||||
* [#2864](https://github.com/moment/moment/pull/2864) Include changelog in npm release
|
||||
* [#2830](https://github.com/moment/moment/pull/2830) dep: add grunt-cli
|
||||
* [#2869](https://github.com/moment/moment/pull/2869) Fix months parsing for some locales
|
||||
|
||||
### 2.11.0 [See full changelog](https://gist.github.com/ichernev/6594bc29719dde6b2f66)
|
||||
|
||||
- Release January 4, 2016
|
||||
|
||||
* [#2624](https://github.com/moment/moment/pull/2624) Proper handling of invalid moments
|
||||
* [#2634](https://github.com/moment/moment/pull/2634) Fix strict month parsing issue in cs,ru,sk
|
||||
* [#2735](https://github.com/moment/moment/pull/2735) Reset the locale back to 'en' after defining all locales in min/locales.js
|
||||
* [#2702](https://github.com/moment/moment/pull/2702) Week rework
|
||||
* [#2746](https://github.com/moment/moment/pull/2746) Changed September Abbreviation to "Sept" in locale-specific english
|
||||
files and default locale file
|
||||
* [#2646](https://github.com/moment/moment/pull/2646) Fix [#2645](https://github.com/moment/moment/pull/2645) - invalid dates pre-1970
|
||||
|
||||
* [#2641](https://github.com/moment/moment/pull/2641) Implement basic format and comma as ms separator in ISO 8601
|
||||
* [#2665](https://github.com/moment/moment/pull/2665) Implement stricter weekday parsing
|
||||
* [#2700](https://github.com/moment/moment/pull/2700) Add [Hh]mm and [Hh]mmss formatting tokens, so you can parse 123 with
|
||||
hmm for example
|
||||
* [#2565](https://github.com/moment/moment/pull/2565) [#2835](https://github.com/moment/moment/pull/2835) Expose arguments used for moment creation with creationData
|
||||
(fix [#2443](https://github.com/moment/moment/pull/2443))
|
||||
* [#2648](https://github.com/moment/moment/pull/2648) fix issue [#2640](https://github.com/moment/moment/pull/2640): support instanceof operator
|
||||
* [#2709](https://github.com/moment/moment/pull/2709) Add isSameOrAfter and isSameOrBefore comparison methods
|
||||
* [#2721](https://github.com/moment/moment/pull/2721) Fix moment creation from object with strings values
|
||||
* [#2740](https://github.com/moment/moment/pull/2740) Enable 'd hh:mm:ss.sss' format for durations
|
||||
* [#2766](https://github.com/moment/moment/pull/2766) [#2833](https://github.com/moment/moment/pull/2833) Alternate Clock Source Support
|
||||
|
||||
### 2.10.6
|
||||
|
||||
- Release July 28, 2015
|
||||
|
||||
[#2515](https://github.com/moment/moment/pull/2515) Fix regression introduced
|
||||
in `2.10.5` related to `moment.ISO_8601` parsing.
|
||||
|
||||
### 2.10.5 [See full changelog](https://gist.github.com/ichernev/6ec13ac7efc396da44b2)
|
||||
|
||||
- Release July 26, 2015
|
||||
|
||||
Important changes:
|
||||
* [#2357](https://github.com/moment/moment/pull/2357) Improve unit bubbling for ISO dates
|
||||
this fixes day to year conversions to work around end-of-year (~365 days). As
|
||||
a side effect 365 days is 11 months and 30 days, and 366 days is one year.
|
||||
* [#2438](https://github.com/moment/moment/pull/2438) Fix inconsistent moment.min and moment.max results
|
||||
Return invalid result if any of the inputs is invalid
|
||||
* [#2494](https://github.com/moment/moment/pull/2494) Fix two digit year parsing with YYYY format
|
||||
This brings the benefits of YY to YYYY
|
||||
* [#2368](https://github.com/moment/moment/pull/2368) perf: use faster form of copying dates, across the board improvement
|
||||
|
||||
|
||||
### 2.10.3 [See full changelog](https://gist.github.com/ichernev/f264b9bed5b00f8b1b7f)
|
||||
|
||||
- Release May 13, 2015
|
||||
|
||||
* add `moment.fn.to` and `moment.fn.toNow` (similar to `from` and `fromNow`)
|
||||
* new locales (Sinhalese (si), Montenegrin (me), Javanese (ja))
|
||||
* performance improvements
|
||||
|
||||
### 2.10.2
|
||||
|
||||
- Release April 9, 2015
|
||||
|
||||
* fixed moment-with-locales in browser env caused by esperanto change
|
||||
|
||||
### 2.10.1
|
||||
|
||||
* regression: Add moment.duration.fn back
|
||||
|
||||
### 2.10.0
|
||||
|
||||
Ported code to es6 modules.
|
||||
|
||||
### 2.9.0 [See full changelog](https://gist.github.com/ichernev/0c9a9b49951111a27ce7)
|
||||
|
||||
- Release January 8, 2015
|
||||
|
||||
languages:
|
||||
* [2104](https://github.com/moment/moment/issues/2104) Frisian (fy) language file with unit test
|
||||
* [2097](https://github.com/moment/moment/issues/2097) add ar-tn locale
|
||||
|
||||
deprecations:
|
||||
* [2074](https://github.com/moment/moment/issues/2074) Implement `moment.fn.utcOffset`, deprecate `moment.fn.zone`
|
||||
|
||||
features:
|
||||
* [2088](https://github.com/moment/moment/issues/2088) add moment.fn.isBetween
|
||||
* [2054](https://github.com/moment/moment/issues/2054) Call updateOffset when creating moment (needed for default timezone in
|
||||
moment-timezone)
|
||||
* [1893](https://github.com/moment/moment/issues/1893) Add moment.isDate method
|
||||
* [1825](https://github.com/moment/moment/issues/1825) Implement toJSON function on Duration
|
||||
* [1809](https://github.com/moment/moment/issues/1809) Allowing moment.set() to accept a hash of units
|
||||
* [2128](https://github.com/moment/moment/issues/2128) Add firstDayOfWeek, firstDayOfYear locale getters
|
||||
* [2131](https://github.com/moment/moment/issues/2131) Add quarter diff support
|
||||
|
||||
Some bugfixes and language improvements -- [full changelog](https://gist.github.com/ichernev/0c9a9b49951111a27ce7)
|
||||
|
||||
### 2.8.4 [See full changelog](https://gist.github.com/ichernev/a4fcb0a46d74e4b9b996)
|
||||
|
||||
- Release November 19, 2014
|
||||
|
||||
Features:
|
||||
|
||||
* [#2000](https://github.com/moment/moment/issues/2000) Add LTS localised format that includes seconds
|
||||
* [#1960](https://github.com/moment/moment/issues/1960) added formatToken 'x' for unix offset in milliseconds #1938
|
||||
* [#1965](https://github.com/moment/moment/issues/1965) Support 24:00:00.000 to mean next day, at midnight.
|
||||
* [#2002](https://github.com/moment/moment/issues/2002) Accept 'date' key when creating moment with object
|
||||
* [#2009](https://github.com/moment/moment/issues/2009) Use native toISOString when we can
|
||||
|
||||
Some bugfixes and language improvements -- [full changelog](https://gist.github.com/ichernev/a4fcb0a46d74e4b9b996)
|
||||
|
||||
### 2.8.3
|
||||
|
||||
- Release September 5, 2014
|
||||
|
||||
Bugfixes:
|
||||
|
||||
* [#1801](https://github.com/moment/moment/issues/1801) proper pluralization for Arabic
|
||||
* [#1833](https://github.com/moment/moment/issues/1833) improve spm integration
|
||||
* [#1871](https://github.com/moment/moment/issues/1871) fix zone bug caused by Firefox 24
|
||||
* [#1882](https://github.com/moment/moment/issues/1882) Use hh:mm in Czech
|
||||
* [#1883](https://github.com/moment/moment/issues/1883) Fix 2.8.0 regression in duration as conversions
|
||||
* [#1890](https://github.com/moment/moment/issues/1890) Faster travis builds
|
||||
* [#1892](https://github.com/moment/moment/issues/1892) Faster isBefore/After/Same
|
||||
* [#1848](https://github.com/moment/moment/issues/1848) Fix flaky month diffs
|
||||
* [#1895](https://github.com/moment/moment/issues/1895) Fix 2.8.0 regression in moment.utc with format array
|
||||
* [#1896](https://github.com/moment/moment/issues/1896) Support setting invalid instance locale (noop)
|
||||
* [#1897](https://github.com/moment/moment/issues/1897) Support moment([str]) in addition to moment([int])
|
||||
|
||||
### 2.8.2
|
||||
|
||||
- Release August 22, 2014
|
||||
|
||||
Minor bugfixes:
|
||||
|
||||
* [#1874](https://github.com/moment/moment/issues/1874) use `Object.prototype.hasOwnProperty`
|
||||
instead of `obj.hasOwnProperty` (ie8 bug)
|
||||
* [#1873](https://github.com/moment/moment/issues/1873) add `duration#toString()`
|
||||
* [#1859](https://github.com/moment/moment/issues/1859) better month/weekday names in norwegian
|
||||
* [#1812](https://github.com/moment/moment/issues/1812) meridiem parsing for greek
|
||||
* [#1804](https://github.com/moment/moment/issues/1804) spanish del -> de
|
||||
* [#1800](https://github.com/moment/moment/issues/1800) korean LT improvement
|
||||
|
||||
### 2.8.1
|
||||
|
||||
- Release August 1, 2014
|
||||
|
||||
* bugfix [#1813](https://github.com/moment/moment/issues/1813): fix moment().lang([key]) incompatibility
|
||||
|
||||
### 2.8.0 [See changelog](https://gist.github.com/ichernev/ac3899324a5fa6c8c9b4)
|
||||
|
||||
- Release July 31, 2014
|
||||
|
||||
* incompatible changes
|
||||
* [#1761](https://github.com/moment/moment/issues/1761): moments created without a language are no longer following the global language, in case it changes. Only newly created moments take the global language by default. In case you're affected by this, wait, comment on [#1797](https://github.com/moment/moment/issues/1797) and wait for a proper reimplementation
|
||||
* [#1642](https://github.com/moment/moment/issues/1642): 45 days is no longer "a month" according to humanize, cutoffs for month, and year have changed. Hopefully your code does not depend on a particular answer from humanize (which it shouldn't anyway)
|
||||
* [#1784](https://github.com/moment/moment/issues/1784): if you use the human readable English datetime format in a weird way (like storing them in a database) that would break when the format changes you're at risk.
|
||||
|
||||
* deprecations (old behavior will be dropped in 3.0)
|
||||
* [#1761](https://github.com/moment/moment/issues/1761) `lang` is renamed to `locale`, `langData` -> `localeData`. Also there is now `defineLocale` that should be used when creating new locales
|
||||
* [#1763](https://github.com/moment/moment/issues/1763) `add(unit, value)` and `subtract(unit, value)` are now deprecated. Use `add(value, unit)` and `subtract(value, unit)` instead.
|
||||
* [#1759](https://github.com/moment/moment/issues/1759) rename `duration.toIsoString` to `duration.toISOString`. The js standard library and moment's `toISOString` follow that convention.
|
||||
|
||||
* new locales
|
||||
* [#1789](https://github.com/moment/moment/issues/1789) Tibetan (bo)
|
||||
* [#1786](https://github.com/moment/moment/issues/1786) Africaans (af)
|
||||
* [#1778](https://github.com/moment/moment/issues/1778) Burmese (my)
|
||||
* [#1727](https://github.com/moment/moment/issues/1727) Belarusian (be)
|
||||
|
||||
* bugfixes, locale bugfixes, performance improvements, features
|
||||
|
||||
### 2.7.0 [See changelog](https://gist.github.com/ichernev/b0a3d456d5a84c9901d7)
|
||||
|
||||
- Release June 12, 2014
|
||||
|
||||
* new languages
|
||||
|
||||
* [#1678](https://github.com/moment/moment/issues/1678) Bengali (bn)
|
||||
* [#1628](https://github.com/moment/moment/issues/1628) Azerbaijani (az)
|
||||
* [#1633](https://github.com/moment/moment/issues/1633) Arabic, Saudi Arabia (ar-sa)
|
||||
* [#1648](https://github.com/moment/moment/issues/1648) Austrian German (de-at)
|
||||
|
||||
* features
|
||||
|
||||
* [#1663](https://github.com/moment/moment/issues/1663) configurable relative time thresholds
|
||||
* [#1554](https://github.com/moment/moment/issues/1554) support anchor time in moment.calendar
|
||||
* [#1693](https://github.com/moment/moment/issues/1693) support moment.ISO_8601 as parsing format
|
||||
* [#1637](https://github.com/moment/moment/issues/1637) add moment.min and moment.max and deprecate min/max instance methods
|
||||
* [#1704](https://github.com/moment/moment/issues/1704) support string value in add/subtract
|
||||
* [#1647](https://github.com/moment/moment/issues/1647) add spm support (package manager)
|
||||
|
||||
* bugfixes
|
||||
|
||||
### 2.6.0 [See changelog](https://gist.github.com/ichernev/10544682)
|
||||
|
||||
- Release April 12 , 2014
|
||||
|
||||
* languages
|
||||
* [#1529](https://github.com/moment/moment/issues/1529) Serbian-Cyrillic (sr-cyr)
|
||||
* [#1544](https://github.com/moment/moment/issues/1544), [#1546](https://github.com/moment/moment/issues/1546) Khmer Cambodia (km)
|
||||
|
||||
* features
|
||||
* [#1419](https://github.com/moment/moment/issues/1419), [#1468](https://github.com/moment/moment/issues/1468), [#1467](https://github.com/moment/moment/issues/1467), [#1546](https://github.com/moment/moment/issues/1546) better handling of timezone-d moments around DST
|
||||
* [#1462](https://github.com/moment/moment/issues/1462) add weeksInYear and isoWeeksInYear
|
||||
* [#1475](https://github.com/moment/moment/issues/1475) support ordinal parsing
|
||||
* [#1499](https://github.com/moment/moment/issues/1499) composer support
|
||||
* [#1577](https://github.com/moment/moment/issues/1577), [#1604](https://github.com/moment/moment/issues/1604) put Date parsing in moment.createFromInputFallback so it can be properly deprecated and controlled in the future
|
||||
* [#1545](https://github.com/moment/moment/issues/1545) extract two-digit year parsing in moment.parseTwoDigitYear, so it can be overwritten
|
||||
* [#1590](https://github.com/moment/moment/issues/1590) (see [#1574](https://github.com/moment/moment/issues/1574)) set AMD global before module definition to better support non AMD module dependencies used in AMD environment
|
||||
* [#1589](https://github.com/moment/moment/issues/1589) remove global in Node.JS environment (was not working before, nobody complained, was scheduled for removal anyway)
|
||||
* [#1586](https://github.com/moment/moment/issues/1586) support quarter setting and parsing
|
||||
|
||||
* 18 bugs fixed
|
||||
|
||||
### 2.5.1
|
||||
|
||||
- Release January 22, 2014
|
||||
|
||||
* languages
|
||||
* [#1392](https://github.com/moment/moment/issues/1392) Armenian (hy-am)
|
||||
|
||||
* bugfixes
|
||||
* [#1429](https://github.com/moment/moment/issues/1429) fixes [#1423](https://github.com/moment/moment/issues/1423) weird chrome-32 bug with js object creation
|
||||
* [#1421](https://github.com/moment/moment/issues/1421) remove html entities from Welsh
|
||||
* [#1418](https://github.com/moment/moment/issues/1418) fixes [#1401](https://github.com/moment/moment/issues/1401) improved non-padded tokens in strict matching
|
||||
* [#1417](https://github.com/moment/moment/issues/1417) fixes [#1404](https://github.com/moment/moment/issues/1404) handle buggy moment object created by property cloning
|
||||
* [#1398](https://github.com/moment/moment/issues/1398) fixes [#1397](https://github.com/moment/moment/issues/1397) fix Arabic-like week number parsing
|
||||
* [#1396](https://github.com/moment/moment/issues/1396) add leftZeroFill(4) to GGGG and gggg formats
|
||||
* [#1373](https://github.com/moment/moment/issues/1373) use lowercase for months and days in Catalan
|
||||
|
||||
* testing
|
||||
* [#1374](https://github.com/moment/moment/issues/1374) run tests on multiple browser/os combos via SauceLabs and Travis
|
||||
|
||||
### 2.5.0 [See changelog](https://gist.github.com/ichernev/8104451)
|
||||
|
||||
- Release Dec 24, 2013
|
||||
|
||||
* New languages
|
||||
* Luxemburish (lb) [1247](https://github.com/moment/moment/issues/1247)
|
||||
* Serbian (rs) [1319](https://github.com/moment/moment/issues/1319)
|
||||
* Tamil (ta) [1324](https://github.com/moment/moment/issues/1324)
|
||||
* Macedonian (mk) [1337](https://github.com/moment/moment/issues/1337)
|
||||
|
||||
* Features
|
||||
* [1311](https://github.com/moment/moment/issues/1311) Add quarter getter and format token `Q`
|
||||
* [1303](https://github.com/moment/moment/issues/1303) strict parsing now respects number of digits per token (fix [1196](https://github.com/moment/moment/issues/1196))
|
||||
* 0d30bb7 add jspm support
|
||||
* [1347](https://github.com/moment/moment/issues/1347) improve zone parsing
|
||||
* [1362](https://github.com/moment/moment/issues/1362) support merideam parsing in Korean
|
||||
|
||||
* 22 bugfixes
|
||||
|
||||
### 2.4.0
|
||||
|
||||
- Release Oct 27, 2013
|
||||
|
||||
* **Deprecate** globally exported moment, will be removed in next major
|
||||
* New languages
|
||||
* Farose (fo) [#1206](https://github.com/moment/moment/issues/1206)
|
||||
* Tagalog/Filipino (tl-ph) [#1197](https://github.com/moment/moment/issues/1197)
|
||||
* Welsh (cy) [#1215](https://github.com/moment/moment/issues/1215)
|
||||
* Bugfixes
|
||||
* properly handle Z at the end of iso RegExp [#1187](https://github.com/moment/moment/issues/1187)
|
||||
* chinese meridian time improvements [#1076](https://github.com/moment/moment/issues/1076)
|
||||
* fix language tests [#1177](https://github.com/moment/moment/issues/1177)
|
||||
* remove some failing tests (that should have never existed :))
|
||||
[#1185](https://github.com/moment/moment/issues/1185)
|
||||
[#1183](https://github.com/moment/moment/issues/1183)
|
||||
* handle russian noun cases in weird cases [#1195](https://github.com/moment/moment/issues/1195)
|
||||
|
||||
### 2.3.1
|
||||
|
||||
- Release Oct 9, 2013
|
||||
|
||||
Removed a trailing comma [1169] and fixed a bug with `months`, `weekdays` getters [#1171](https://github.com/moment/moment/issues/1171).
|
||||
|
||||
### 2.3.0 [See changelog](https://gist.github.com/ichernev/6864354)
|
||||
|
||||
- Release Oct 7, 2013
|
||||
|
||||
Changed isValid, added strict parsing.
|
||||
Week tokens parsing.
|
||||
|
||||
### 2.2.1
|
||||
|
||||
- Release Sep 12, 2013
|
||||
|
||||
Fixed bug in string prototype test.
|
||||
Updated authors and contributors.
|
||||
|
||||
### 2.2.0 [See changelog](https://gist.github.com/ichernev/00f837a9baf46a3565e4)
|
||||
|
||||
- Release Sep 11, 2013
|
||||
|
||||
Added bower support.
|
||||
|
||||
Language files now use UMD.
|
||||
|
||||
Creating moment defaults to current date/month/year.
|
||||
|
||||
Added a bundle of moment and all language files.
|
||||
|
||||
### 2.1.0 [See changelog](https://gist.github.com/timrwood/b8c2d90d528eddb53ab5)
|
||||
|
||||
- Release Jul 8, 2013
|
||||
|
||||
Added better week support.
|
||||
|
||||
Added ability to set offset with `moment#zone`.
|
||||
|
||||
Added ability to set month or weekday from a string.
|
||||
|
||||
Added `moment#min` and `moment#max`
|
||||
|
||||
### 2.0.0 [See changelog](https://gist.github.com/timrwood/e72f2eef320ed9e37c51)
|
||||
|
||||
- Release Feb 9, 2013
|
||||
|
||||
Added short form localized tokens.
|
||||
|
||||
Added ability to define language a string should be parsed in.
|
||||
|
||||
Added support for reversed add/subtract arguments.
|
||||
|
||||
Added support for `endOf('week')` and `startOf('week')`.
|
||||
|
||||
Fixed the logic for `moment#diff(Moment, 'months')` and `moment#diff(Moment, 'years')`
|
||||
|
||||
`moment#diff` now floors instead of rounds.
|
||||
|
||||
Normalized `moment#toString`.
|
||||
|
||||
Added `isSame`, `isAfter`, and `isBefore` methods.
|
||||
|
||||
Added better week support.
|
||||
|
||||
Added `moment#toJSON`
|
||||
|
||||
Bugfix: Fixed parsing of first century dates
|
||||
|
||||
Bugfix: Parsing 10Sep2001 should work as expected
|
||||
|
||||
Bugfix: Fixed weirdness with `moment.utc()` parsing.
|
||||
|
||||
Changed language ordinal method to return the number + ordinal instead of just the ordinal.
|
||||
|
||||
Changed two digit year parsing cutoff to match strptime.
|
||||
|
||||
Removed `moment#sod` and `moment#eod` in favor of `moment#startOf` and `moment#endOf`.
|
||||
|
||||
Removed `moment.humanizeDuration()` in favor of `moment.duration().humanize()`.
|
||||
|
||||
Removed the lang data objects from the top level namespace.
|
||||
|
||||
Duplicate `Date` passed to `moment()` instead of referencing it.
|
||||
|
||||
### 1.7.2 [See discussion](https://github.com/timrwood/moment/issues/456)
|
||||
|
||||
- Release Oct 2, 2012
|
||||
|
||||
Bugfixes
|
||||
|
||||
### 1.7.1 [See discussion](https://github.com/timrwood/moment/issues/384)
|
||||
|
||||
- Release Oct 1, 2012
|
||||
|
||||
Bugfixes
|
||||
|
||||
### 1.7.0 [See discussion](https://github.com/timrwood/moment/issues/288)
|
||||
|
||||
- Release Jul 26, 2012
|
||||
|
||||
Added `moment.fn.endOf()` and `moment.fn.startOf()`.
|
||||
|
||||
Added validation via `moment.fn.isValid()`.
|
||||
|
||||
Made formatting method 3x faster. http://jsperf.com/momentjs-cached-format-functions
|
||||
|
||||
Add support for month/weekday callbacks in `moment.fn.format()`
|
||||
|
||||
Added instance specific languages.
|
||||
|
||||
Added two letter weekday abbreviations with the formatting token `dd`.
|
||||
|
||||
Various language updates.
|
||||
|
||||
Various bugfixes.
|
||||
|
||||
### 1.6.0 [See discussion](https://github.com/timrwood/moment/pull/268)
|
||||
|
||||
- Release Apr 26, 2012
|
||||
|
||||
Added Durations.
|
||||
|
||||
Revamped parser to support parsing non-separated strings (YYYYMMDD vs YYYY-MM-DD).
|
||||
|
||||
Added support for millisecond parsing and formatting tokens (S SS SSS)
|
||||
|
||||
Added a getter for `moment.lang()`
|
||||
|
||||
Various bugfixes.
|
||||
|
||||
There are a few things deprecated in the 1.6.0 release.
|
||||
|
||||
1. The format tokens `z` and `zz` (timezone abbreviations like EST CST MST etc) will no longer be supported. Due to inconsistent browser support, we are unable to consistently produce this value. See [this issue](https://github.com/timrwood/moment/issues/162) for more background.
|
||||
|
||||
2. The method `moment.fn.native` is deprecated in favor of `moment.fn.toDate`. There continue to be issues with Google Closure Compiler throwing errors when using `native`, even in valid instances.
|
||||
|
||||
3. The way to customize am/pm strings is being changed. This would only affect you if you created a custom language file. For more information, see [this issue](https://github.com/timrwood/moment/pull/222).
|
||||
|
||||
### 1.5.0 [See milestone](https://github.com/timrwood/moment/issues?milestone=10&page=1&state=closed)
|
||||
|
||||
- Release Mar 20, 2012
|
||||
|
||||
Added UTC mode.
|
||||
|
||||
Added automatic ISO8601 parsing.
|
||||
|
||||
Various bugfixes.
|
||||
|
||||
### 1.4.0 [See milestone](https://github.com/timrwood/moment/issues?milestone=8&state=closed)
|
||||
|
||||
- Release Feb 4, 2012
|
||||
|
||||
Added `moment.fn.toDate` as a replacement for `moment.fn.native`.
|
||||
|
||||
Added `moment.fn.sod` and `moment.fn.eod` to get the start and end of day.
|
||||
|
||||
Various bugfixes.
|
||||
|
||||
### 1.3.0 [See milestone](https://github.com/timrwood/moment/issues?milestone=7&state=closed)
|
||||
|
||||
- Release Jan 5, 2012
|
||||
|
||||
Added support for parsing month names in the current language.
|
||||
|
||||
Added escape blocks for parsing tokens.
|
||||
|
||||
Added `moment.fn.calendar` to format strings like 'Today 2:30 PM', 'Tomorrow 1:25 AM', and 'Last Sunday 4:30 AM'.
|
||||
|
||||
Added `moment.fn.day` as a setter.
|
||||
|
||||
Various bugfixes
|
||||
|
||||
### 1.2.0 [See milestone](https://github.com/timrwood/moment/issues?milestone=4&state=closed)
|
||||
|
||||
- Release Dec 7, 2011
|
||||
|
||||
Added timezones to parser and formatter.
|
||||
|
||||
Added `moment.fn.isDST`.
|
||||
|
||||
Added `moment.fn.zone` to get the timezone offset in minutes.
|
||||
|
||||
### 1.1.2 [See milestone](https://github.com/timrwood/moment/issues?milestone=6&state=closed)
|
||||
|
||||
- Release Nov 18, 2011
|
||||
|
||||
Various bugfixes
|
||||
|
||||
### 1.1.1 [See milestone](https://github.com/timrwood/moment/issues?milestone=5&state=closed)
|
||||
|
||||
- Release Nov 12, 2011
|
||||
|
||||
Added time specific diffs (months, days, hours, etc)
|
||||
|
||||
### 1.1.0
|
||||
|
||||
- Release Oct 28, 2011
|
||||
|
||||
Added `moment.fn.format` localized masks. 'L LL LLL LLLL' [issue 29](https://github.com/timrwood/moment/pull/29)
|
||||
|
||||
Fixed [issue 31](https://github.com/timrwood/moment/pull/31).
|
||||
|
||||
### 1.0.1
|
||||
|
||||
- Release Oct 18, 2011
|
||||
|
||||
Added `moment.version` to get the current version.
|
||||
|
||||
Removed `window !== undefined` when checking if module exists to support browserify. [issue 25](https://github.com/timrwood/moment/pull/25)
|
||||
|
||||
### 1.0.0
|
||||
|
||||
- Release
|
||||
|
||||
Added convenience methods for getting and setting date parts.
|
||||
|
||||
Added better support for `moment.add()`.
|
||||
|
||||
Added better lang support in NodeJS.
|
||||
|
||||
Renamed library from underscore.date to Moment.js
|
||||
|
||||
### 0.6.1
|
||||
|
||||
- Release Oct 12, 2011
|
||||
|
||||
Added Portuguese, Italian, and French language support
|
||||
|
||||
### 0.6.0
|
||||
|
||||
- Release Sep 21, 2011
|
||||
|
||||
Added _date.lang() support.
|
||||
Added support for passing multiple formats to try to parse a date. _date("07-10-1986", ["MM-DD-YYYY", "YYYY-MM-DD"]);
|
||||
Made parse from string and single format 25% faster.
|
||||
|
||||
### 0.5.2
|
||||
|
||||
- Release Jul 11, 2011
|
||||
|
||||
Bugfix for [issue 8](https://github.com/timrwood/underscore.date/pull/8) and [issue 9](https://github.com/timrwood/underscore.date/pull/9).
|
||||
|
||||
### 0.5.1
|
||||
|
||||
- Release Jun 17, 2011
|
||||
|
||||
Bugfix for [issue 5](https://github.com/timrwood/underscore.date/pull/5).
|
||||
|
||||
### 0.5.0
|
||||
|
||||
- Release Jun 13, 2011
|
||||
|
||||
Dropped the redundant `_date.date()` in favor of `_date()`.
|
||||
Removed `_date.now()`, as it is a duplicate of `_date()` with no parameters.
|
||||
Removed `_date.isLeapYear(yearNumber)`. Use `_date([yearNumber]).isLeapYear()` instead.
|
||||
Exposed customization options through the `_date.relativeTime`, `_date.weekdays`, `_date.weekdaysShort`, `_date.months`, `_date.monthsShort`, and `_date.ordinal` variables instead of the `_date.customize()` function.
|
||||
|
||||
### 0.4.1
|
||||
|
||||
- Release May 9, 2011
|
||||
|
||||
Added date input formats for input strings.
|
||||
|
||||
### 0.4.0
|
||||
|
||||
- Release May 9, 2011
|
||||
|
||||
Added underscore.date to npm. Removed dependencies on underscore.
|
||||
|
||||
### 0.3.2
|
||||
|
||||
- Release Apr 9, 2011
|
||||
|
||||
Added `'z'` and `'zz'` to `_.date().format()`. Cleaned up some redundant code to trim off some bytes.
|
||||
|
||||
### 0.3.1
|
||||
|
||||
- Release Mar 25, 2011
|
||||
|
||||
Cleaned up the namespace. Moved all date manipulation and display functions to the _.date() object.
|
||||
|
||||
### 0.3.0
|
||||
|
||||
- Release Mar 25, 2011
|
||||
|
||||
Switched to the Underscore methodology of not mucking with the native objects' prototypes.
|
||||
Made chaining possible.
|
||||
|
||||
### 0.2.1
|
||||
|
||||
- Release
|
||||
|
||||
Changed date names to be a more pseudo standardized 'dddd, MMMM Do YYYY, h:mm:ss a'.
|
||||
Added `Date.prototype` functions `add`, `subtract`, `isdst`, and `isleapyear`.
|
||||
|
||||
### 0.2.0
|
||||
|
||||
- Release
|
||||
|
||||
Changed function names to be more concise.
|
||||
Changed date format from php date format to custom format.
|
||||
|
||||
### 0.1.0
|
||||
|
||||
- Release
|
||||
|
||||
Initial release
|
||||
|
22
node/node_modules/moment/LICENSE
generated
vendored
Normal file
22
node/node_modules/moment/LICENSE
generated
vendored
Normal file
|
@ -0,0 +1,22 @@
|
|||
Copyright (c) JS Foundation and other contributors
|
||||
|
||||
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.
|
69
node/node_modules/moment/README.md
generated
vendored
Normal file
69
node/node_modules/moment/README.md
generated
vendored
Normal file
|
@ -0,0 +1,69 @@
|
|||
[](https://gitter.im/moment/moment?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
|
||||
|
||||
[![NPM version][npm-version-image]][npm-url] [![NPM downloads][npm-downloads-image]][downloads-url] [![MIT License][license-image]][license-url] [![Build Status][travis-image]][travis-url]
|
||||
[](https://coveralls.io/r/moment/moment?branch=develop)
|
||||
[](https://app.fossa.io/projects/git%2Bhttps%3A%2F%2Fgithub.com%2Fmoment%2Fmoment?ref=badge_shield)
|
||||
[](https://dependabot.com/compatibility-score.html?dependency-name=moment&package-manager=npm_and_yarn&version-scheme=semver)
|
||||
|
||||
A lightweight JavaScript date library for parsing, validating, manipulating, and formatting dates.
|
||||
|
||||
**[Documentation](http://momentjs.com/docs/)**
|
||||
|
||||
## Port to ECMAScript 6 (version 2.10.0)
|
||||
|
||||
Moment 2.10.0 does not bring any new features, but the code is now written in
|
||||
ECMAScript 6 modules and placed inside `src/`. Previously `moment.js`, `locale/*.js` and
|
||||
`test/moment/*.js`, `test/locale/*.js` contained the source of the project. Now
|
||||
the source is in `src/`, temporary build (ECMAScript 5) files are placed under
|
||||
`build/umd/` (for running tests during development), and the `moment.js` and
|
||||
`locale/*.js` files are updated only on release.
|
||||
|
||||
If you want to use a particular revision of the code, make sure to run
|
||||
`grunt transpile update-index`, so `moment.js` and `locales/*.js` are synced
|
||||
with `src/*`. We might place that in a commit hook in the future.
|
||||
|
||||
## Upgrading to 2.0.0
|
||||
|
||||
There are a number of small backwards incompatible changes with version 2.0.0. [See the full descriptions here](https://gist.github.com/timrwood/e72f2eef320ed9e37c51#backwards-incompatible-changes)
|
||||
|
||||
* Changed language ordinal method to return the number + ordinal instead of just the ordinal.
|
||||
|
||||
* Changed two digit year parsing cutoff to match strptime.
|
||||
|
||||
* Removed `moment#sod` and `moment#eod` in favor of `moment#startOf` and `moment#endOf`.
|
||||
|
||||
* Removed `moment.humanizeDuration()` in favor of `moment.duration().humanize()`.
|
||||
|
||||
* Removed the lang data objects from the top level namespace.
|
||||
|
||||
* Duplicate `Date` passed to `moment()` instead of referencing it.
|
||||
|
||||
## [Changelog](https://github.com/moment/moment/blob/develop/CHANGELOG.md)
|
||||
|
||||
## [Contributing](https://github.com/moment/moment/blob/develop/CONTRIBUTING.md) [](https://www.codetriage.com/moment/moment)
|
||||
|
||||
We're looking for co-maintainers! If you want to become a master of time please
|
||||
write to [ichernev](https://github.com/ichernev).
|
||||
|
||||
In addition to contributing code, you can help to triage issues. This can include reproducing bug reports, or asking for vital information such as version numbers or reproduction instructions. If you would like to start triaging issues, one easy way to get started is to [subscribe to moment/moment on CodeTriage](https://www.codetriage.com/moment/moment).
|
||||
|
||||
### Frequently asked questions
|
||||
|
||||
See [FAQ.md](FAQ.md).
|
||||
|
||||
## License
|
||||
|
||||
Moment.js is freely distributable under the terms of the [MIT license](https://github.com/moment/moment/blob/develop/LICENSE).
|
||||
|
||||
[](https://app.fossa.io/projects/git%2Bhttps%3A%2F%2Fgithub.com%2Fmoment%2Fmoment?ref=badge_large)
|
||||
|
||||
[license-image]: http://img.shields.io/badge/license-MIT-blue.svg?style=flat
|
||||
[license-url]: LICENSE
|
||||
|
||||
[npm-url]: https://npmjs.org/package/moment
|
||||
[npm-version-image]: http://img.shields.io/npm/v/moment.svg?style=flat
|
||||
[npm-downloads-image]: http://img.shields.io/npm/dm/moment.svg?style=flat
|
||||
[downloads-url]: https://npmcharts.com/compare/moment?minimal=true
|
||||
|
||||
[travis-url]: http://travis-ci.org/moment/moment
|
||||
[travis-image]: http://img.shields.io/travis/moment/moment/develop.svg?style=flat
|
71
node/node_modules/moment/dist/locale/af.js
generated
vendored
Normal file
71
node/node_modules/moment/dist/locale/af.js
generated
vendored
Normal file
|
@ -0,0 +1,71 @@
|
|||
//! moment.js locale configuration
|
||||
//! locale : Afrikaans [af]
|
||||
//! author : Werner Mollentze : https://github.com/wernerm
|
||||
|
||||
import moment from '../moment';
|
||||
|
||||
export default moment.defineLocale('af', {
|
||||
months: 'Januarie_Februarie_Maart_April_Mei_Junie_Julie_Augustus_September_Oktober_November_Desember'.split(
|
||||
'_'
|
||||
),
|
||||
monthsShort: 'Jan_Feb_Mrt_Apr_Mei_Jun_Jul_Aug_Sep_Okt_Nov_Des'.split('_'),
|
||||
weekdays: 'Sondag_Maandag_Dinsdag_Woensdag_Donderdag_Vrydag_Saterdag'.split(
|
||||
'_'
|
||||
),
|
||||
weekdaysShort: 'Son_Maa_Din_Woe_Don_Vry_Sat'.split('_'),
|
||||
weekdaysMin: 'So_Ma_Di_Wo_Do_Vr_Sa'.split('_'),
|
||||
meridiemParse: /vm|nm/i,
|
||||
isPM: function (input) {
|
||||
return /^nm$/i.test(input);
|
||||
},
|
||||
meridiem: function (hours, minutes, isLower) {
|
||||
if (hours < 12) {
|
||||
return isLower ? 'vm' : 'VM';
|
||||
} else {
|
||||
return isLower ? 'nm' : 'NM';
|
||||
}
|
||||
},
|
||||
longDateFormat: {
|
||||
LT: 'HH:mm',
|
||||
LTS: 'HH:mm:ss',
|
||||
L: 'DD/MM/YYYY',
|
||||
LL: 'D MMMM YYYY',
|
||||
LLL: 'D MMMM YYYY HH:mm',
|
||||
LLLL: 'dddd, D MMMM YYYY HH:mm',
|
||||
},
|
||||
calendar: {
|
||||
sameDay: '[Vandag om] LT',
|
||||
nextDay: '[Môre om] LT',
|
||||
nextWeek: 'dddd [om] LT',
|
||||
lastDay: '[Gister om] LT',
|
||||
lastWeek: '[Laas] dddd [om] LT',
|
||||
sameElse: 'L',
|
||||
},
|
||||
relativeTime: {
|
||||
future: 'oor %s',
|
||||
past: '%s gelede',
|
||||
s: "'n paar sekondes",
|
||||
ss: '%d sekondes',
|
||||
m: "'n minuut",
|
||||
mm: '%d minute',
|
||||
h: "'n uur",
|
||||
hh: '%d ure',
|
||||
d: "'n dag",
|
||||
dd: '%d dae',
|
||||
M: "'n maand",
|
||||
MM: '%d maande',
|
||||
y: "'n jaar",
|
||||
yy: '%d jaar',
|
||||
},
|
||||
dayOfMonthOrdinalParse: /\d{1,2}(ste|de)/,
|
||||
ordinal: function (number) {
|
||||
return (
|
||||
number +
|
||||
(number === 1 || number === 8 || number >= 20 ? 'ste' : 'de')
|
||||
); // Thanks to Joris Röling : https://github.com/jjupiter
|
||||
},
|
||||
week: {
|
||||
dow: 1, // Maandag is die eerste dag van die week.
|
||||
doy: 4, // Die week wat die 4de Januarie bevat is die eerste week van die jaar.
|
||||
},
|
||||
});
|
156
node/node_modules/moment/dist/locale/ar-dz.js
generated
vendored
Normal file
156
node/node_modules/moment/dist/locale/ar-dz.js
generated
vendored
Normal file
|
@ -0,0 +1,156 @@
|
|||
//! moment.js locale configuration
|
||||
//! locale : Arabic (Algeria) [ar-dz]
|
||||
//! author : Amine Roukh: https://github.com/Amine27
|
||||
//! author : Abdel Said: https://github.com/abdelsaid
|
||||
//! author : Ahmed Elkhatib
|
||||
//! author : forabi https://github.com/forabi
|
||||
//! author : Noureddine LOUAHEDJ : https://github.com/noureddinem
|
||||
|
||||
import moment from '../moment';
|
||||
|
||||
var pluralForm = function (n) {
|
||||
return n === 0
|
||||
? 0
|
||||
: n === 1
|
||||
? 1
|
||||
: n === 2
|
||||
? 2
|
||||
: n % 100 >= 3 && n % 100 <= 10
|
||||
? 3
|
||||
: n % 100 >= 11
|
||||
? 4
|
||||
: 5;
|
||||
},
|
||||
plurals = {
|
||||
s: [
|
||||
'أقل من ثانية',
|
||||
'ثانية واحدة',
|
||||
['ثانيتان', 'ثانيتين'],
|
||||
'%d ثوان',
|
||||
'%d ثانية',
|
||||
'%d ثانية',
|
||||
],
|
||||
m: [
|
||||
'أقل من دقيقة',
|
||||
'دقيقة واحدة',
|
||||
['دقيقتان', 'دقيقتين'],
|
||||
'%d دقائق',
|
||||
'%d دقيقة',
|
||||
'%d دقيقة',
|
||||
],
|
||||
h: [
|
||||
'أقل من ساعة',
|
||||
'ساعة واحدة',
|
||||
['ساعتان', 'ساعتين'],
|
||||
'%d ساعات',
|
||||
'%d ساعة',
|
||||
'%d ساعة',
|
||||
],
|
||||
d: [
|
||||
'أقل من يوم',
|
||||
'يوم واحد',
|
||||
['يومان', 'يومين'],
|
||||
'%d أيام',
|
||||
'%d يومًا',
|
||||
'%d يوم',
|
||||
],
|
||||
M: [
|
||||
'أقل من شهر',
|
||||
'شهر واحد',
|
||||
['شهران', 'شهرين'],
|
||||
'%d أشهر',
|
||||
'%d شهرا',
|
||||
'%d شهر',
|
||||
],
|
||||
y: [
|
||||
'أقل من عام',
|
||||
'عام واحد',
|
||||
['عامان', 'عامين'],
|
||||
'%d أعوام',
|
||||
'%d عامًا',
|
||||
'%d عام',
|
||||
],
|
||||
},
|
||||
pluralize = function (u) {
|
||||
return function (number, withoutSuffix, string, isFuture) {
|
||||
var f = pluralForm(number),
|
||||
str = plurals[u][pluralForm(number)];
|
||||
if (f === 2) {
|
||||
str = str[withoutSuffix ? 0 : 1];
|
||||
}
|
||||
return str.replace(/%d/i, number);
|
||||
};
|
||||
},
|
||||
months = [
|
||||
'جانفي',
|
||||
'فيفري',
|
||||
'مارس',
|
||||
'أفريل',
|
||||
'ماي',
|
||||
'جوان',
|
||||
'جويلية',
|
||||
'أوت',
|
||||
'سبتمبر',
|
||||
'أكتوبر',
|
||||
'نوفمبر',
|
||||
'ديسمبر',
|
||||
];
|
||||
|
||||
export default moment.defineLocale('ar-dz', {
|
||||
months: months,
|
||||
monthsShort: months,
|
||||
weekdays: 'الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت'.split('_'),
|
||||
weekdaysShort: 'أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت'.split('_'),
|
||||
weekdaysMin: 'ح_ن_ث_ر_خ_ج_س'.split('_'),
|
||||
weekdaysParseExact: true,
|
||||
longDateFormat: {
|
||||
LT: 'HH:mm',
|
||||
LTS: 'HH:mm:ss',
|
||||
L: 'D/\u200FM/\u200FYYYY',
|
||||
LL: 'D MMMM YYYY',
|
||||
LLL: 'D MMMM YYYY HH:mm',
|
||||
LLLL: 'dddd D MMMM YYYY HH:mm',
|
||||
},
|
||||
meridiemParse: /ص|م/,
|
||||
isPM: function (input) {
|
||||
return 'م' === input;
|
||||
},
|
||||
meridiem: function (hour, minute, isLower) {
|
||||
if (hour < 12) {
|
||||
return 'ص';
|
||||
} else {
|
||||
return 'م';
|
||||
}
|
||||
},
|
||||
calendar: {
|
||||
sameDay: '[اليوم عند الساعة] LT',
|
||||
nextDay: '[غدًا عند الساعة] LT',
|
||||
nextWeek: 'dddd [عند الساعة] LT',
|
||||
lastDay: '[أمس عند الساعة] LT',
|
||||
lastWeek: 'dddd [عند الساعة] LT',
|
||||
sameElse: 'L',
|
||||
},
|
||||
relativeTime: {
|
||||
future: 'بعد %s',
|
||||
past: 'منذ %s',
|
||||
s: pluralize('s'),
|
||||
ss: pluralize('s'),
|
||||
m: pluralize('m'),
|
||||
mm: pluralize('m'),
|
||||
h: pluralize('h'),
|
||||
hh: pluralize('h'),
|
||||
d: pluralize('d'),
|
||||
dd: pluralize('d'),
|
||||
M: pluralize('M'),
|
||||
MM: pluralize('M'),
|
||||
y: pluralize('y'),
|
||||
yy: pluralize('y'),
|
||||
},
|
||||
postformat: function (string) {
|
||||
return string.replace(/,/g, '،');
|
||||
},
|
||||
week: {
|
||||
dow: 0, // Sunday is the first day of the week.
|
||||
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
||||
},
|
||||
});
|
54
node/node_modules/moment/dist/locale/ar-kw.js
generated
vendored
Normal file
54
node/node_modules/moment/dist/locale/ar-kw.js
generated
vendored
Normal file
|
@ -0,0 +1,54 @@
|
|||
//! moment.js locale configuration
|
||||
//! locale : Arabic (Kuwait) [ar-kw]
|
||||
//! author : Nusret Parlak: https://github.com/nusretparlak
|
||||
|
||||
import moment from '../moment';
|
||||
|
||||
export default moment.defineLocale('ar-kw', {
|
||||
months: 'يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر'.split(
|
||||
'_'
|
||||
),
|
||||
monthsShort: 'يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر'.split(
|
||||
'_'
|
||||
),
|
||||
weekdays: 'الأحد_الإتنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت'.split('_'),
|
||||
weekdaysShort: 'احد_اتنين_ثلاثاء_اربعاء_خميس_جمعة_سبت'.split('_'),
|
||||
weekdaysMin: 'ح_ن_ث_ر_خ_ج_س'.split('_'),
|
||||
weekdaysParseExact: true,
|
||||
longDateFormat: {
|
||||
LT: 'HH:mm',
|
||||
LTS: 'HH:mm:ss',
|
||||
L: 'DD/MM/YYYY',
|
||||
LL: 'D MMMM YYYY',
|
||||
LLL: 'D MMMM YYYY HH:mm',
|
||||
LLLL: 'dddd D MMMM YYYY HH:mm',
|
||||
},
|
||||
calendar: {
|
||||
sameDay: '[اليوم على الساعة] LT',
|
||||
nextDay: '[غدا على الساعة] LT',
|
||||
nextWeek: 'dddd [على الساعة] LT',
|
||||
lastDay: '[أمس على الساعة] LT',
|
||||
lastWeek: 'dddd [على الساعة] LT',
|
||||
sameElse: 'L',
|
||||
},
|
||||
relativeTime: {
|
||||
future: 'في %s',
|
||||
past: 'منذ %s',
|
||||
s: 'ثوان',
|
||||
ss: '%d ثانية',
|
||||
m: 'دقيقة',
|
||||
mm: '%d دقائق',
|
||||
h: 'ساعة',
|
||||
hh: '%d ساعات',
|
||||
d: 'يوم',
|
||||
dd: '%d أيام',
|
||||
M: 'شهر',
|
||||
MM: '%d أشهر',
|
||||
y: 'سنة',
|
||||
yy: '%d سنوات',
|
||||
},
|
||||
week: {
|
||||
dow: 0, // Sunday is the first day of the week.
|
||||
doy: 12, // The week that contains Jan 12th is the first week of the year.
|
||||
},
|
||||
});
|
171
node/node_modules/moment/dist/locale/ar-ly.js
generated
vendored
Normal file
171
node/node_modules/moment/dist/locale/ar-ly.js
generated
vendored
Normal file
|
@ -0,0 +1,171 @@
|
|||
//! moment.js locale configuration
|
||||
//! locale : Arabic (Lybia) [ar-ly]
|
||||
//! author : Ali Hmer: https://github.com/kikoanis
|
||||
|
||||
import moment from '../moment';
|
||||
|
||||
var symbolMap = {
|
||||
'1': '1',
|
||||
'2': '2',
|
||||
'3': '3',
|
||||
'4': '4',
|
||||
'5': '5',
|
||||
'6': '6',
|
||||
'7': '7',
|
||||
'8': '8',
|
||||
'9': '9',
|
||||
'0': '0',
|
||||
},
|
||||
pluralForm = function (n) {
|
||||
return n === 0
|
||||
? 0
|
||||
: n === 1
|
||||
? 1
|
||||
: n === 2
|
||||
? 2
|
||||
: n % 100 >= 3 && n % 100 <= 10
|
||||
? 3
|
||||
: n % 100 >= 11
|
||||
? 4
|
||||
: 5;
|
||||
},
|
||||
plurals = {
|
||||
s: [
|
||||
'أقل من ثانية',
|
||||
'ثانية واحدة',
|
||||
['ثانيتان', 'ثانيتين'],
|
||||
'%d ثوان',
|
||||
'%d ثانية',
|
||||
'%d ثانية',
|
||||
],
|
||||
m: [
|
||||
'أقل من دقيقة',
|
||||
'دقيقة واحدة',
|
||||
['دقيقتان', 'دقيقتين'],
|
||||
'%d دقائق',
|
||||
'%d دقيقة',
|
||||
'%d دقيقة',
|
||||
],
|
||||
h: [
|
||||
'أقل من ساعة',
|
||||
'ساعة واحدة',
|
||||
['ساعتان', 'ساعتين'],
|
||||
'%d ساعات',
|
||||
'%d ساعة',
|
||||
'%d ساعة',
|
||||
],
|
||||
d: [
|
||||
'أقل من يوم',
|
||||
'يوم واحد',
|
||||
['يومان', 'يومين'],
|
||||
'%d أيام',
|
||||
'%d يومًا',
|
||||
'%d يوم',
|
||||
],
|
||||
M: [
|
||||
'أقل من شهر',
|
||||
'شهر واحد',
|
||||
['شهران', 'شهرين'],
|
||||
'%d أشهر',
|
||||
'%d شهرا',
|
||||
'%d شهر',
|
||||
],
|
||||
y: [
|
||||
'أقل من عام',
|
||||
'عام واحد',
|
||||
['عامان', 'عامين'],
|
||||
'%d أعوام',
|
||||
'%d عامًا',
|
||||
'%d عام',
|
||||
],
|
||||
},
|
||||
pluralize = function (u) {
|
||||
return function (number, withoutSuffix, string, isFuture) {
|
||||
var f = pluralForm(number),
|
||||
str = plurals[u][pluralForm(number)];
|
||||
if (f === 2) {
|
||||
str = str[withoutSuffix ? 0 : 1];
|
||||
}
|
||||
return str.replace(/%d/i, number);
|
||||
};
|
||||
},
|
||||
months = [
|
||||
'يناير',
|
||||
'فبراير',
|
||||
'مارس',
|
||||
'أبريل',
|
||||
'مايو',
|
||||
'يونيو',
|
||||
'يوليو',
|
||||
'أغسطس',
|
||||
'سبتمبر',
|
||||
'أكتوبر',
|
||||
'نوفمبر',
|
||||
'ديسمبر',
|
||||
];
|
||||
|
||||
export default moment.defineLocale('ar-ly', {
|
||||
months: months,
|
||||
monthsShort: months,
|
||||
weekdays: 'الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت'.split('_'),
|
||||
weekdaysShort: 'أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت'.split('_'),
|
||||
weekdaysMin: 'ح_ن_ث_ر_خ_ج_س'.split('_'),
|
||||
weekdaysParseExact: true,
|
||||
longDateFormat: {
|
||||
LT: 'HH:mm',
|
||||
LTS: 'HH:mm:ss',
|
||||
L: 'D/\u200FM/\u200FYYYY',
|
||||
LL: 'D MMMM YYYY',
|
||||
LLL: 'D MMMM YYYY HH:mm',
|
||||
LLLL: 'dddd D MMMM YYYY HH:mm',
|
||||
},
|
||||
meridiemParse: /ص|م/,
|
||||
isPM: function (input) {
|
||||
return 'م' === input;
|
||||
},
|
||||
meridiem: function (hour, minute, isLower) {
|
||||
if (hour < 12) {
|
||||
return 'ص';
|
||||
} else {
|
||||
return 'م';
|
||||
}
|
||||
},
|
||||
calendar: {
|
||||
sameDay: '[اليوم عند الساعة] LT',
|
||||
nextDay: '[غدًا عند الساعة] LT',
|
||||
nextWeek: 'dddd [عند الساعة] LT',
|
||||
lastDay: '[أمس عند الساعة] LT',
|
||||
lastWeek: 'dddd [عند الساعة] LT',
|
||||
sameElse: 'L',
|
||||
},
|
||||
relativeTime: {
|
||||
future: 'بعد %s',
|
||||
past: 'منذ %s',
|
||||
s: pluralize('s'),
|
||||
ss: pluralize('s'),
|
||||
m: pluralize('m'),
|
||||
mm: pluralize('m'),
|
||||
h: pluralize('h'),
|
||||
hh: pluralize('h'),
|
||||
d: pluralize('d'),
|
||||
dd: pluralize('d'),
|
||||
M: pluralize('M'),
|
||||
MM: pluralize('M'),
|
||||
y: pluralize('y'),
|
||||
yy: pluralize('y'),
|
||||
},
|
||||
preparse: function (string) {
|
||||
return string.replace(/،/g, ',');
|
||||
},
|
||||
postformat: function (string) {
|
||||
return string
|
||||
.replace(/\d/g, function (match) {
|
||||
return symbolMap[match];
|
||||
})
|
||||
.replace(/,/g, '،');
|
||||
},
|
||||
week: {
|
||||
dow: 6, // Saturday is the first day of the week.
|
||||
doy: 12, // The week that contains Jan 12th is the first week of the year.
|
||||
},
|
||||
});
|
55
node/node_modules/moment/dist/locale/ar-ma.js
generated
vendored
Normal file
55
node/node_modules/moment/dist/locale/ar-ma.js
generated
vendored
Normal file
|
@ -0,0 +1,55 @@
|
|||
//! moment.js locale configuration
|
||||
//! locale : Arabic (Morocco) [ar-ma]
|
||||
//! author : ElFadili Yassine : https://github.com/ElFadiliY
|
||||
//! author : Abdel Said : https://github.com/abdelsaid
|
||||
|
||||
import moment from '../moment';
|
||||
|
||||
export default moment.defineLocale('ar-ma', {
|
||||
months: 'يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر'.split(
|
||||
'_'
|
||||
),
|
||||
monthsShort: 'يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر'.split(
|
||||
'_'
|
||||
),
|
||||
weekdays: 'الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت'.split('_'),
|
||||
weekdaysShort: 'احد_اثنين_ثلاثاء_اربعاء_خميس_جمعة_سبت'.split('_'),
|
||||
weekdaysMin: 'ح_ن_ث_ر_خ_ج_س'.split('_'),
|
||||
weekdaysParseExact: true,
|
||||
longDateFormat: {
|
||||
LT: 'HH:mm',
|
||||
LTS: 'HH:mm:ss',
|
||||
L: 'DD/MM/YYYY',
|
||||
LL: 'D MMMM YYYY',
|
||||
LLL: 'D MMMM YYYY HH:mm',
|
||||
LLLL: 'dddd D MMMM YYYY HH:mm',
|
||||
},
|
||||
calendar: {
|
||||
sameDay: '[اليوم على الساعة] LT',
|
||||
nextDay: '[غدا على الساعة] LT',
|
||||
nextWeek: 'dddd [على الساعة] LT',
|
||||
lastDay: '[أمس على الساعة] LT',
|
||||
lastWeek: 'dddd [على الساعة] LT',
|
||||
sameElse: 'L',
|
||||
},
|
||||
relativeTime: {
|
||||
future: 'في %s',
|
||||
past: 'منذ %s',
|
||||
s: 'ثوان',
|
||||
ss: '%d ثانية',
|
||||
m: 'دقيقة',
|
||||
mm: '%d دقائق',
|
||||
h: 'ساعة',
|
||||
hh: '%d ساعات',
|
||||
d: 'يوم',
|
||||
dd: '%d أيام',
|
||||
M: 'شهر',
|
||||
MM: '%d أشهر',
|
||||
y: 'سنة',
|
||||
yy: '%d سنوات',
|
||||
},
|
||||
week: {
|
||||
dow: 6, // Saturday is the first day of the week.
|
||||
doy: 12, // The week that contains Jan 12th is the first week of the year.
|
||||
},
|
||||
});
|
104
node/node_modules/moment/dist/locale/ar-sa.js
generated
vendored
Normal file
104
node/node_modules/moment/dist/locale/ar-sa.js
generated
vendored
Normal file
|
@ -0,0 +1,104 @@
|
|||
//! moment.js locale configuration
|
||||
//! locale : Arabic (Saudi Arabia) [ar-sa]
|
||||
//! author : Suhail Alkowaileet : https://github.com/xsoh
|
||||
|
||||
import moment from '../moment';
|
||||
|
||||
var symbolMap = {
|
||||
'1': '١',
|
||||
'2': '٢',
|
||||
'3': '٣',
|
||||
'4': '٤',
|
||||
'5': '٥',
|
||||
'6': '٦',
|
||||
'7': '٧',
|
||||
'8': '٨',
|
||||
'9': '٩',
|
||||
'0': '٠',
|
||||
},
|
||||
numberMap = {
|
||||
'١': '1',
|
||||
'٢': '2',
|
||||
'٣': '3',
|
||||
'٤': '4',
|
||||
'٥': '5',
|
||||
'٦': '6',
|
||||
'٧': '7',
|
||||
'٨': '8',
|
||||
'٩': '9',
|
||||
'٠': '0',
|
||||
};
|
||||
|
||||
export default moment.defineLocale('ar-sa', {
|
||||
months: 'يناير_فبراير_مارس_أبريل_مايو_يونيو_يوليو_أغسطس_سبتمبر_أكتوبر_نوفمبر_ديسمبر'.split(
|
||||
'_'
|
||||
),
|
||||
monthsShort: 'يناير_فبراير_مارس_أبريل_مايو_يونيو_يوليو_أغسطس_سبتمبر_أكتوبر_نوفمبر_ديسمبر'.split(
|
||||
'_'
|
||||
),
|
||||
weekdays: 'الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت'.split('_'),
|
||||
weekdaysShort: 'أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت'.split('_'),
|
||||
weekdaysMin: 'ح_ن_ث_ر_خ_ج_س'.split('_'),
|
||||
weekdaysParseExact: true,
|
||||
longDateFormat: {
|
||||
LT: 'HH:mm',
|
||||
LTS: 'HH:mm:ss',
|
||||
L: 'DD/MM/YYYY',
|
||||
LL: 'D MMMM YYYY',
|
||||
LLL: 'D MMMM YYYY HH:mm',
|
||||
LLLL: 'dddd D MMMM YYYY HH:mm',
|
||||
},
|
||||
meridiemParse: /ص|م/,
|
||||
isPM: function (input) {
|
||||
return 'م' === input;
|
||||
},
|
||||
meridiem: function (hour, minute, isLower) {
|
||||
if (hour < 12) {
|
||||
return 'ص';
|
||||
} else {
|
||||
return 'م';
|
||||
}
|
||||
},
|
||||
calendar: {
|
||||
sameDay: '[اليوم على الساعة] LT',
|
||||
nextDay: '[غدا على الساعة] LT',
|
||||
nextWeek: 'dddd [على الساعة] LT',
|
||||
lastDay: '[أمس على الساعة] LT',
|
||||
lastWeek: 'dddd [على الساعة] LT',
|
||||
sameElse: 'L',
|
||||
},
|
||||
relativeTime: {
|
||||
future: 'في %s',
|
||||
past: 'منذ %s',
|
||||
s: 'ثوان',
|
||||
ss: '%d ثانية',
|
||||
m: 'دقيقة',
|
||||
mm: '%d دقائق',
|
||||
h: 'ساعة',
|
||||
hh: '%d ساعات',
|
||||
d: 'يوم',
|
||||
dd: '%d أيام',
|
||||
M: 'شهر',
|
||||
MM: '%d أشهر',
|
||||
y: 'سنة',
|
||||
yy: '%d سنوات',
|
||||
},
|
||||
preparse: function (string) {
|
||||
return string
|
||||
.replace(/[١٢٣٤٥٦٧٨٩٠]/g, function (match) {
|
||||
return numberMap[match];
|
||||
})
|
||||
.replace(/،/g, ',');
|
||||
},
|
||||
postformat: function (string) {
|
||||
return string
|
||||
.replace(/\d/g, function (match) {
|
||||
return symbolMap[match];
|
||||
})
|
||||
.replace(/,/g, '،');
|
||||
},
|
||||
week: {
|
||||
dow: 0, // Sunday is the first day of the week.
|
||||
doy: 6, // The week that contains Jan 6th is the first week of the year.
|
||||
},
|
||||
});
|
54
node/node_modules/moment/dist/locale/ar-tn.js
generated
vendored
Normal file
54
node/node_modules/moment/dist/locale/ar-tn.js
generated
vendored
Normal file
|
@ -0,0 +1,54 @@
|
|||
//! moment.js locale configuration
|
||||
//! locale : Arabic (Tunisia) [ar-tn]
|
||||
//! author : Nader Toukabri : https://github.com/naderio
|
||||
|
||||
import moment from '../moment';
|
||||
|
||||
export default moment.defineLocale('ar-tn', {
|
||||
months: 'جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر'.split(
|
||||
'_'
|
||||
),
|
||||
monthsShort: 'جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر'.split(
|
||||
'_'
|
||||
),
|
||||
weekdays: 'الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت'.split('_'),
|
||||
weekdaysShort: 'أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت'.split('_'),
|
||||
weekdaysMin: 'ح_ن_ث_ر_خ_ج_س'.split('_'),
|
||||
weekdaysParseExact: true,
|
||||
longDateFormat: {
|
||||
LT: 'HH:mm',
|
||||
LTS: 'HH:mm:ss',
|
||||
L: 'DD/MM/YYYY',
|
||||
LL: 'D MMMM YYYY',
|
||||
LLL: 'D MMMM YYYY HH:mm',
|
||||
LLLL: 'dddd D MMMM YYYY HH:mm',
|
||||
},
|
||||
calendar: {
|
||||
sameDay: '[اليوم على الساعة] LT',
|
||||
nextDay: '[غدا على الساعة] LT',
|
||||
nextWeek: 'dddd [على الساعة] LT',
|
||||
lastDay: '[أمس على الساعة] LT',
|
||||
lastWeek: 'dddd [على الساعة] LT',
|
||||
sameElse: 'L',
|
||||
},
|
||||
relativeTime: {
|
||||
future: 'في %s',
|
||||
past: 'منذ %s',
|
||||
s: 'ثوان',
|
||||
ss: '%d ثانية',
|
||||
m: 'دقيقة',
|
||||
mm: '%d دقائق',
|
||||
h: 'ساعة',
|
||||
hh: '%d ساعات',
|
||||
d: 'يوم',
|
||||
dd: '%d أيام',
|
||||
M: 'شهر',
|
||||
MM: '%d أشهر',
|
||||
y: 'سنة',
|
||||
yy: '%d سنوات',
|
||||
},
|
||||
week: {
|
||||
dow: 1, // Monday is the first day of the week.
|
||||
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
||||
},
|
||||
});
|
189
node/node_modules/moment/dist/locale/ar.js
generated
vendored
Normal file
189
node/node_modules/moment/dist/locale/ar.js
generated
vendored
Normal file
|
@ -0,0 +1,189 @@
|
|||
//! moment.js locale configuration
|
||||
//! locale : Arabic [ar]
|
||||
//! author : Abdel Said: https://github.com/abdelsaid
|
||||
//! author : Ahmed Elkhatib
|
||||
//! author : forabi https://github.com/forabi
|
||||
|
||||
import moment from '../moment';
|
||||
|
||||
var symbolMap = {
|
||||
'1': '١',
|
||||
'2': '٢',
|
||||
'3': '٣',
|
||||
'4': '٤',
|
||||
'5': '٥',
|
||||
'6': '٦',
|
||||
'7': '٧',
|
||||
'8': '٨',
|
||||
'9': '٩',
|
||||
'0': '٠',
|
||||
},
|
||||
numberMap = {
|
||||
'١': '1',
|
||||
'٢': '2',
|
||||
'٣': '3',
|
||||
'٤': '4',
|
||||
'٥': '5',
|
||||
'٦': '6',
|
||||
'٧': '7',
|
||||
'٨': '8',
|
||||
'٩': '9',
|
||||
'٠': '0',
|
||||
},
|
||||
pluralForm = function (n) {
|
||||
return n === 0
|
||||
? 0
|
||||
: n === 1
|
||||
? 1
|
||||
: n === 2
|
||||
? 2
|
||||
: n % 100 >= 3 && n % 100 <= 10
|
||||
? 3
|
||||
: n % 100 >= 11
|
||||
? 4
|
||||
: 5;
|
||||
},
|
||||
plurals = {
|
||||
s: [
|
||||
'أقل من ثانية',
|
||||
'ثانية واحدة',
|
||||
['ثانيتان', 'ثانيتين'],
|
||||
'%d ثوان',
|
||||
'%d ثانية',
|
||||
'%d ثانية',
|
||||
],
|
||||
m: [
|
||||
'أقل من دقيقة',
|
||||
'دقيقة واحدة',
|
||||
['دقيقتان', 'دقيقتين'],
|
||||
'%d دقائق',
|
||||
'%d دقيقة',
|
||||
'%d دقيقة',
|
||||
],
|
||||
h: [
|
||||
'أقل من ساعة',
|
||||
'ساعة واحدة',
|
||||
['ساعتان', 'ساعتين'],
|
||||
'%d ساعات',
|
||||
'%d ساعة',
|
||||
'%d ساعة',
|
||||
],
|
||||
d: [
|
||||
'أقل من يوم',
|
||||
'يوم واحد',
|
||||
['يومان', 'يومين'],
|
||||
'%d أيام',
|
||||
'%d يومًا',
|
||||
'%d يوم',
|
||||
],
|
||||
M: [
|
||||
'أقل من شهر',
|
||||
'شهر واحد',
|
||||
['شهران', 'شهرين'],
|
||||
'%d أشهر',
|
||||
'%d شهرا',
|
||||
'%d شهر',
|
||||
],
|
||||
y: [
|
||||
'أقل من عام',
|
||||
'عام واحد',
|
||||
['عامان', 'عامين'],
|
||||
'%d أعوام',
|
||||
'%d عامًا',
|
||||
'%d عام',
|
||||
],
|
||||
},
|
||||
pluralize = function (u) {
|
||||
return function (number, withoutSuffix, string, isFuture) {
|
||||
var f = pluralForm(number),
|
||||
str = plurals[u][pluralForm(number)];
|
||||
if (f === 2) {
|
||||
str = str[withoutSuffix ? 0 : 1];
|
||||
}
|
||||
return str.replace(/%d/i, number);
|
||||
};
|
||||
},
|
||||
months = [
|
||||
'يناير',
|
||||
'فبراير',
|
||||
'مارس',
|
||||
'أبريل',
|
||||
'مايو',
|
||||
'يونيو',
|
||||
'يوليو',
|
||||
'أغسطس',
|
||||
'سبتمبر',
|
||||
'أكتوبر',
|
||||
'نوفمبر',
|
||||
'ديسمبر',
|
||||
];
|
||||
|
||||
export default moment.defineLocale('ar', {
|
||||
months: months,
|
||||
monthsShort: months,
|
||||
weekdays: 'الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت'.split('_'),
|
||||
weekdaysShort: 'أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت'.split('_'),
|
||||
weekdaysMin: 'ح_ن_ث_ر_خ_ج_س'.split('_'),
|
||||
weekdaysParseExact: true,
|
||||
longDateFormat: {
|
||||
LT: 'HH:mm',
|
||||
LTS: 'HH:mm:ss',
|
||||
L: 'D/\u200FM/\u200FYYYY',
|
||||
LL: 'D MMMM YYYY',
|
||||
LLL: 'D MMMM YYYY HH:mm',
|
||||
LLLL: 'dddd D MMMM YYYY HH:mm',
|
||||
},
|
||||
meridiemParse: /ص|م/,
|
||||
isPM: function (input) {
|
||||
return 'م' === input;
|
||||
},
|
||||
meridiem: function (hour, minute, isLower) {
|
||||
if (hour < 12) {
|
||||
return 'ص';
|
||||
} else {
|
||||
return 'م';
|
||||
}
|
||||
},
|
||||
calendar: {
|
||||
sameDay: '[اليوم عند الساعة] LT',
|
||||
nextDay: '[غدًا عند الساعة] LT',
|
||||
nextWeek: 'dddd [عند الساعة] LT',
|
||||
lastDay: '[أمس عند الساعة] LT',
|
||||
lastWeek: 'dddd [عند الساعة] LT',
|
||||
sameElse: 'L',
|
||||
},
|
||||
relativeTime: {
|
||||
future: 'بعد %s',
|
||||
past: 'منذ %s',
|
||||
s: pluralize('s'),
|
||||
ss: pluralize('s'),
|
||||
m: pluralize('m'),
|
||||
mm: pluralize('m'),
|
||||
h: pluralize('h'),
|
||||
hh: pluralize('h'),
|
||||
d: pluralize('d'),
|
||||
dd: pluralize('d'),
|
||||
M: pluralize('M'),
|
||||
MM: pluralize('M'),
|
||||
y: pluralize('y'),
|
||||
yy: pluralize('y'),
|
||||
},
|
||||
preparse: function (string) {
|
||||
return string
|
||||
.replace(/[١٢٣٤٥٦٧٨٩٠]/g, function (match) {
|
||||
return numberMap[match];
|
||||
})
|
||||
.replace(/،/g, ',');
|
||||
},
|
||||
postformat: function (string) {
|
||||
return string
|
||||
.replace(/\d/g, function (match) {
|
||||
return symbolMap[match];
|
||||
})
|
||||
.replace(/,/g, '،');
|
||||
},
|
||||
week: {
|
||||
dow: 6, // Saturday is the first day of the week.
|
||||
doy: 12, // The week that contains Jan 12th is the first week of the year.
|
||||
},
|
||||
});
|
101
node/node_modules/moment/dist/locale/az.js
generated
vendored
Normal file
101
node/node_modules/moment/dist/locale/az.js
generated
vendored
Normal file
|
@ -0,0 +1,101 @@
|
|||
//! moment.js locale configuration
|
||||
//! locale : Azerbaijani [az]
|
||||
//! author : topchiyev : https://github.com/topchiyev
|
||||
|
||||
import moment from '../moment';
|
||||
|
||||
var suffixes = {
|
||||
1: '-inci',
|
||||
5: '-inci',
|
||||
8: '-inci',
|
||||
70: '-inci',
|
||||
80: '-inci',
|
||||
2: '-nci',
|
||||
7: '-nci',
|
||||
20: '-nci',
|
||||
50: '-nci',
|
||||
3: '-üncü',
|
||||
4: '-üncü',
|
||||
100: '-üncü',
|
||||
6: '-ncı',
|
||||
9: '-uncu',
|
||||
10: '-uncu',
|
||||
30: '-uncu',
|
||||
60: '-ıncı',
|
||||
90: '-ıncı',
|
||||
};
|
||||
|
||||
export default moment.defineLocale('az', {
|
||||
months: 'yanvar_fevral_mart_aprel_may_iyun_iyul_avqust_sentyabr_oktyabr_noyabr_dekabr'.split(
|
||||
'_'
|
||||
),
|
||||
monthsShort: 'yan_fev_mar_apr_may_iyn_iyl_avq_sen_okt_noy_dek'.split('_'),
|
||||
weekdays: 'Bazar_Bazar ertəsi_Çərşənbə axşamı_Çərşənbə_Cümə axşamı_Cümə_Şənbə'.split(
|
||||
'_'
|
||||
),
|
||||
weekdaysShort: 'Baz_BzE_ÇAx_Çər_CAx_Cüm_Şən'.split('_'),
|
||||
weekdaysMin: 'Bz_BE_ÇA_Çə_CA_Cü_Şə'.split('_'),
|
||||
weekdaysParseExact: true,
|
||||
longDateFormat: {
|
||||
LT: 'HH:mm',
|
||||
LTS: 'HH:mm:ss',
|
||||
L: 'DD.MM.YYYY',
|
||||
LL: 'D MMMM YYYY',
|
||||
LLL: 'D MMMM YYYY HH:mm',
|
||||
LLLL: 'dddd, D MMMM YYYY HH:mm',
|
||||
},
|
||||
calendar: {
|
||||
sameDay: '[bugün saat] LT',
|
||||
nextDay: '[sabah saat] LT',
|
||||
nextWeek: '[gələn həftə] dddd [saat] LT',
|
||||
lastDay: '[dünən] LT',
|
||||
lastWeek: '[keçən həftə] dddd [saat] LT',
|
||||
sameElse: 'L',
|
||||
},
|
||||
relativeTime: {
|
||||
future: '%s sonra',
|
||||
past: '%s əvvəl',
|
||||
s: 'birneçə saniyə',
|
||||
ss: '%d saniyə',
|
||||
m: 'bir dəqiqə',
|
||||
mm: '%d dəqiqə',
|
||||
h: 'bir saat',
|
||||
hh: '%d saat',
|
||||
d: 'bir gün',
|
||||
dd: '%d gün',
|
||||
M: 'bir ay',
|
||||
MM: '%d ay',
|
||||
y: 'bir il',
|
||||
yy: '%d il',
|
||||
},
|
||||
meridiemParse: /gecə|səhər|gündüz|axşam/,
|
||||
isPM: function (input) {
|
||||
return /^(gündüz|axşam)$/.test(input);
|
||||
},
|
||||
meridiem: function (hour, minute, isLower) {
|
||||
if (hour < 4) {
|
||||
return 'gecə';
|
||||
} else if (hour < 12) {
|
||||
return 'səhər';
|
||||
} else if (hour < 17) {
|
||||
return 'gündüz';
|
||||
} else {
|
||||
return 'axşam';
|
||||
}
|
||||
},
|
||||
dayOfMonthOrdinalParse: /\d{1,2}-(ıncı|inci|nci|üncü|ncı|uncu)/,
|
||||
ordinal: function (number) {
|
||||
if (number === 0) {
|
||||
// special case for zero
|
||||
return number + '-ıncı';
|
||||
}
|
||||
var a = number % 10,
|
||||
b = (number % 100) - a,
|
||||
c = number >= 100 ? 100 : null;
|
||||
return number + (suffixes[a] || suffixes[b] || suffixes[c]);
|
||||
},
|
||||
week: {
|
||||
dow: 1, // Monday is the first day of the week.
|
||||
doy: 7, // The week that contains Jan 7th is the first week of the year.
|
||||
},
|
||||
});
|
141
node/node_modules/moment/dist/locale/be.js
generated
vendored
Normal file
141
node/node_modules/moment/dist/locale/be.js
generated
vendored
Normal file
|
@ -0,0 +1,141 @@
|
|||
//! moment.js locale configuration
|
||||
//! locale : Belarusian [be]
|
||||
//! author : Dmitry Demidov : https://github.com/demidov91
|
||||
//! author: Praleska: http://praleska.pro/
|
||||
//! Author : Menelion Elensúle : https://github.com/Oire
|
||||
|
||||
import moment from '../moment';
|
||||
|
||||
function plural(word, num) {
|
||||
var forms = word.split('_');
|
||||
return num % 10 === 1 && num % 100 !== 11
|
||||
? forms[0]
|
||||
: num % 10 >= 2 && num % 10 <= 4 && (num % 100 < 10 || num % 100 >= 20)
|
||||
? forms[1]
|
||||
: forms[2];
|
||||
}
|
||||
function relativeTimeWithPlural(number, withoutSuffix, key) {
|
||||
var format = {
|
||||
ss: withoutSuffix ? 'секунда_секунды_секунд' : 'секунду_секунды_секунд',
|
||||
mm: withoutSuffix ? 'хвіліна_хвіліны_хвілін' : 'хвіліну_хвіліны_хвілін',
|
||||
hh: withoutSuffix ? 'гадзіна_гадзіны_гадзін' : 'гадзіну_гадзіны_гадзін',
|
||||
dd: 'дзень_дні_дзён',
|
||||
MM: 'месяц_месяцы_месяцаў',
|
||||
yy: 'год_гады_гадоў',
|
||||
};
|
||||
if (key === 'm') {
|
||||
return withoutSuffix ? 'хвіліна' : 'хвіліну';
|
||||
} else if (key === 'h') {
|
||||
return withoutSuffix ? 'гадзіна' : 'гадзіну';
|
||||
} else {
|
||||
return number + ' ' + plural(format[key], +number);
|
||||
}
|
||||
}
|
||||
|
||||
export default moment.defineLocale('be', {
|
||||
months: {
|
||||
format: 'студзеня_лютага_сакавіка_красавіка_траўня_чэрвеня_ліпеня_жніўня_верасня_кастрычніка_лістапада_снежня'.split(
|
||||
'_'
|
||||
),
|
||||
standalone: 'студзень_люты_сакавік_красавік_травень_чэрвень_ліпень_жнівень_верасень_кастрычнік_лістапад_снежань'.split(
|
||||
'_'
|
||||
),
|
||||
},
|
||||
monthsShort: 'студ_лют_сак_крас_трав_чэрв_ліп_жнів_вер_каст_ліст_снеж'.split(
|
||||
'_'
|
||||
),
|
||||
weekdays: {
|
||||
format: 'нядзелю_панядзелак_аўторак_сераду_чацвер_пятніцу_суботу'.split(
|
||||
'_'
|
||||
),
|
||||
standalone: 'нядзеля_панядзелак_аўторак_серада_чацвер_пятніца_субота'.split(
|
||||
'_'
|
||||
),
|
||||
isFormat: /\[ ?[Ууў] ?(?:мінулую|наступную)? ?\] ?dddd/,
|
||||
},
|
||||
weekdaysShort: 'нд_пн_ат_ср_чц_пт_сб'.split('_'),
|
||||
weekdaysMin: 'нд_пн_ат_ср_чц_пт_сб'.split('_'),
|
||||
longDateFormat: {
|
||||
LT: 'HH:mm',
|
||||
LTS: 'HH:mm:ss',
|
||||
L: 'DD.MM.YYYY',
|
||||
LL: 'D MMMM YYYY г.',
|
||||
LLL: 'D MMMM YYYY г., HH:mm',
|
||||
LLLL: 'dddd, D MMMM YYYY г., HH:mm',
|
||||
},
|
||||
calendar: {
|
||||
sameDay: '[Сёння ў] LT',
|
||||
nextDay: '[Заўтра ў] LT',
|
||||
lastDay: '[Учора ў] LT',
|
||||
nextWeek: function () {
|
||||
return '[У] dddd [ў] LT';
|
||||
},
|
||||
lastWeek: function () {
|
||||
switch (this.day()) {
|
||||
case 0:
|
||||
case 3:
|
||||
case 5:
|
||||
case 6:
|
||||
return '[У мінулую] dddd [ў] LT';
|
||||
case 1:
|
||||
case 2:
|
||||
case 4:
|
||||
return '[У мінулы] dddd [ў] LT';
|
||||
}
|
||||
},
|
||||
sameElse: 'L',
|
||||
},
|
||||
relativeTime: {
|
||||
future: 'праз %s',
|
||||
past: '%s таму',
|
||||
s: 'некалькі секунд',
|
||||
m: relativeTimeWithPlural,
|
||||
mm: relativeTimeWithPlural,
|
||||
h: relativeTimeWithPlural,
|
||||
hh: relativeTimeWithPlural,
|
||||
d: 'дзень',
|
||||
dd: relativeTimeWithPlural,
|
||||
M: 'месяц',
|
||||
MM: relativeTimeWithPlural,
|
||||
y: 'год',
|
||||
yy: relativeTimeWithPlural,
|
||||
},
|
||||
meridiemParse: /ночы|раніцы|дня|вечара/,
|
||||
isPM: function (input) {
|
||||
return /^(дня|вечара)$/.test(input);
|
||||
},
|
||||
meridiem: function (hour, minute, isLower) {
|
||||
if (hour < 4) {
|
||||
return 'ночы';
|
||||
} else if (hour < 12) {
|
||||
return 'раніцы';
|
||||
} else if (hour < 17) {
|
||||
return 'дня';
|
||||
} else {
|
||||
return 'вечара';
|
||||
}
|
||||
},
|
||||
dayOfMonthOrdinalParse: /\d{1,2}-(і|ы|га)/,
|
||||
ordinal: function (number, period) {
|
||||
switch (period) {
|
||||
case 'M':
|
||||
case 'd':
|
||||
case 'DDD':
|
||||
case 'w':
|
||||
case 'W':
|
||||
return (number % 10 === 2 || number % 10 === 3) &&
|
||||
number % 100 !== 12 &&
|
||||
number % 100 !== 13
|
||||
? number + '-і'
|
||||
: number + '-ы';
|
||||
case 'D':
|
||||
return number + '-га';
|
||||
default:
|
||||
return number;
|
||||
}
|
||||
},
|
||||
week: {
|
||||
dow: 1, // Monday is the first day of the week.
|
||||
doy: 7, // The week that contains Jan 7th is the first week of the year.
|
||||
},
|
||||
});
|
85
node/node_modules/moment/dist/locale/bg.js
generated
vendored
Normal file
85
node/node_modules/moment/dist/locale/bg.js
generated
vendored
Normal file
|
@ -0,0 +1,85 @@
|
|||
//! moment.js locale configuration
|
||||
//! locale : Bulgarian [bg]
|
||||
//! author : Krasen Borisov : https://github.com/kraz
|
||||
|
||||
import moment from '../moment';
|
||||
|
||||
export default moment.defineLocale('bg', {
|
||||
months: 'януари_февруари_март_април_май_юни_юли_август_септември_октомври_ноември_декември'.split(
|
||||
'_'
|
||||
),
|
||||
monthsShort: 'яну_фев_мар_апр_май_юни_юли_авг_сеп_окт_ное_дек'.split('_'),
|
||||
weekdays: 'неделя_понеделник_вторник_сряда_четвъртък_петък_събота'.split(
|
||||
'_'
|
||||
),
|
||||
weekdaysShort: 'нед_пон_вто_сря_чет_пет_съб'.split('_'),
|
||||
weekdaysMin: 'нд_пн_вт_ср_чт_пт_сб'.split('_'),
|
||||
longDateFormat: {
|
||||
LT: 'H:mm',
|
||||
LTS: 'H:mm:ss',
|
||||
L: 'D.MM.YYYY',
|
||||
LL: 'D MMMM YYYY',
|
||||
LLL: 'D MMMM YYYY H:mm',
|
||||
LLLL: 'dddd, D MMMM YYYY H:mm',
|
||||
},
|
||||
calendar: {
|
||||
sameDay: '[Днес в] LT',
|
||||
nextDay: '[Утре в] LT',
|
||||
nextWeek: 'dddd [в] LT',
|
||||
lastDay: '[Вчера в] LT',
|
||||
lastWeek: function () {
|
||||
switch (this.day()) {
|
||||
case 0:
|
||||
case 3:
|
||||
case 6:
|
||||
return '[Миналата] dddd [в] LT';
|
||||
case 1:
|
||||
case 2:
|
||||
case 4:
|
||||
case 5:
|
||||
return '[Миналия] dddd [в] LT';
|
||||
}
|
||||
},
|
||||
sameElse: 'L',
|
||||
},
|
||||
relativeTime: {
|
||||
future: 'след %s',
|
||||
past: 'преди %s',
|
||||
s: 'няколко секунди',
|
||||
ss: '%d секунди',
|
||||
m: 'минута',
|
||||
mm: '%d минути',
|
||||
h: 'час',
|
||||
hh: '%d часа',
|
||||
d: 'ден',
|
||||
dd: '%d дена',
|
||||
M: 'месец',
|
||||
MM: '%d месеца',
|
||||
y: 'година',
|
||||
yy: '%d години',
|
||||
},
|
||||
dayOfMonthOrdinalParse: /\d{1,2}-(ев|ен|ти|ви|ри|ми)/,
|
||||
ordinal: function (number) {
|
||||
var lastDigit = number % 10,
|
||||
last2Digits = number % 100;
|
||||
if (number === 0) {
|
||||
return number + '-ев';
|
||||
} else if (last2Digits === 0) {
|
||||
return number + '-ен';
|
||||
} else if (last2Digits > 10 && last2Digits < 20) {
|
||||
return number + '-ти';
|
||||
} else if (lastDigit === 1) {
|
||||
return number + '-ви';
|
||||
} else if (lastDigit === 2) {
|
||||
return number + '-ри';
|
||||
} else if (lastDigit === 7 || lastDigit === 8) {
|
||||
return number + '-ми';
|
||||
} else {
|
||||
return number + '-ти';
|
||||
}
|
||||
},
|
||||
week: {
|
||||
dow: 1, // Monday is the first day of the week.
|
||||
doy: 7, // The week that contains Jan 7th is the first week of the year.
|
||||
},
|
||||
});
|
52
node/node_modules/moment/dist/locale/bm.js
generated
vendored
Normal file
52
node/node_modules/moment/dist/locale/bm.js
generated
vendored
Normal file
|
@ -0,0 +1,52 @@
|
|||
//! moment.js locale configuration
|
||||
//! locale : Bambara [bm]
|
||||
//! author : Estelle Comment : https://github.com/estellecomment
|
||||
// Language contact person : Abdoufata Kane : https://github.com/abdoufata
|
||||
|
||||
import moment from '../moment';
|
||||
|
||||
export default moment.defineLocale('bm', {
|
||||
months: 'Zanwuyekalo_Fewuruyekalo_Marisikalo_Awirilikalo_Mɛkalo_Zuwɛnkalo_Zuluyekalo_Utikalo_Sɛtanburukalo_ɔkutɔburukalo_Nowanburukalo_Desanburukalo'.split(
|
||||
'_'
|
||||
),
|
||||
monthsShort: 'Zan_Few_Mar_Awi_Mɛ_Zuw_Zul_Uti_Sɛt_ɔku_Now_Des'.split('_'),
|
||||
weekdays: 'Kari_Ntɛnɛn_Tarata_Araba_Alamisa_Juma_Sibiri'.split('_'),
|
||||
weekdaysShort: 'Kar_Ntɛ_Tar_Ara_Ala_Jum_Sib'.split('_'),
|
||||
weekdaysMin: 'Ka_Nt_Ta_Ar_Al_Ju_Si'.split('_'),
|
||||
longDateFormat: {
|
||||
LT: 'HH:mm',
|
||||
LTS: 'HH:mm:ss',
|
||||
L: 'DD/MM/YYYY',
|
||||
LL: 'MMMM [tile] D [san] YYYY',
|
||||
LLL: 'MMMM [tile] D [san] YYYY [lɛrɛ] HH:mm',
|
||||
LLLL: 'dddd MMMM [tile] D [san] YYYY [lɛrɛ] HH:mm',
|
||||
},
|
||||
calendar: {
|
||||
sameDay: '[Bi lɛrɛ] LT',
|
||||
nextDay: '[Sini lɛrɛ] LT',
|
||||
nextWeek: 'dddd [don lɛrɛ] LT',
|
||||
lastDay: '[Kunu lɛrɛ] LT',
|
||||
lastWeek: 'dddd [tɛmɛnen lɛrɛ] LT',
|
||||
sameElse: 'L',
|
||||
},
|
||||
relativeTime: {
|
||||
future: '%s kɔnɔ',
|
||||
past: 'a bɛ %s bɔ',
|
||||
s: 'sanga dama dama',
|
||||
ss: 'sekondi %d',
|
||||
m: 'miniti kelen',
|
||||
mm: 'miniti %d',
|
||||
h: 'lɛrɛ kelen',
|
||||
hh: 'lɛrɛ %d',
|
||||
d: 'tile kelen',
|
||||
dd: 'tile %d',
|
||||
M: 'kalo kelen',
|
||||
MM: 'kalo %d',
|
||||
y: 'san kelen',
|
||||
yy: 'san %d',
|
||||
},
|
||||
week: {
|
||||
dow: 1, // Monday is the first day of the week.
|
||||
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
||||
},
|
||||
});
|
118
node/node_modules/moment/dist/locale/bn.js
generated
vendored
Normal file
118
node/node_modules/moment/dist/locale/bn.js
generated
vendored
Normal file
|
@ -0,0 +1,118 @@
|
|||
//! moment.js locale configuration
|
||||
//! locale : Bengali [bn]
|
||||
//! author : Kaushik Gandhi : https://github.com/kaushikgandhi
|
||||
|
||||
import moment from '../moment';
|
||||
|
||||
var symbolMap = {
|
||||
'1': '১',
|
||||
'2': '২',
|
||||
'3': '৩',
|
||||
'4': '৪',
|
||||
'5': '৫',
|
||||
'6': '৬',
|
||||
'7': '৭',
|
||||
'8': '৮',
|
||||
'9': '৯',
|
||||
'0': '০',
|
||||
},
|
||||
numberMap = {
|
||||
'১': '1',
|
||||
'২': '2',
|
||||
'৩': '3',
|
||||
'৪': '4',
|
||||
'৫': '5',
|
||||
'৬': '6',
|
||||
'৭': '7',
|
||||
'৮': '8',
|
||||
'৯': '9',
|
||||
'০': '0',
|
||||
};
|
||||
|
||||
export default moment.defineLocale('bn', {
|
||||
months: 'জানুয়ারি_ফেব্রুয়ারি_মার্চ_এপ্রিল_মে_জুন_জুলাই_আগস্ট_সেপ্টেম্বর_অক্টোবর_নভেম্বর_ডিসেম্বর'.split(
|
||||
'_'
|
||||
),
|
||||
monthsShort: 'জানু_ফেব্রু_মার্চ_এপ্রিল_মে_জুন_জুলাই_আগস্ট_সেপ্ট_অক্টো_নভে_ডিসে'.split(
|
||||
'_'
|
||||
),
|
||||
weekdays: 'রবিবার_সোমবার_মঙ্গলবার_বুধবার_বৃহস্পতিবার_শুক্রবার_শনিবার'.split(
|
||||
'_'
|
||||
),
|
||||
weekdaysShort: 'রবি_সোম_মঙ্গল_বুধ_বৃহস্পতি_শুক্র_শনি'.split('_'),
|
||||
weekdaysMin: 'রবি_সোম_মঙ্গল_বুধ_বৃহ_শুক্র_শনি'.split('_'),
|
||||
longDateFormat: {
|
||||
LT: 'A h:mm সময়',
|
||||
LTS: 'A h:mm:ss সময়',
|
||||
L: 'DD/MM/YYYY',
|
||||
LL: 'D MMMM YYYY',
|
||||
LLL: 'D MMMM YYYY, A h:mm সময়',
|
||||
LLLL: 'dddd, D MMMM YYYY, A h:mm সময়',
|
||||
},
|
||||
calendar: {
|
||||
sameDay: '[আজ] LT',
|
||||
nextDay: '[আগামীকাল] LT',
|
||||
nextWeek: 'dddd, LT',
|
||||
lastDay: '[গতকাল] LT',
|
||||
lastWeek: '[গত] dddd, LT',
|
||||
sameElse: 'L',
|
||||
},
|
||||
relativeTime: {
|
||||
future: '%s পরে',
|
||||
past: '%s আগে',
|
||||
s: 'কয়েক সেকেন্ড',
|
||||
ss: '%d সেকেন্ড',
|
||||
m: 'এক মিনিট',
|
||||
mm: '%d মিনিট',
|
||||
h: 'এক ঘন্টা',
|
||||
hh: '%d ঘন্টা',
|
||||
d: 'এক দিন',
|
||||
dd: '%d দিন',
|
||||
M: 'এক মাস',
|
||||
MM: '%d মাস',
|
||||
y: 'এক বছর',
|
||||
yy: '%d বছর',
|
||||
},
|
||||
preparse: function (string) {
|
||||
return string.replace(/[১২৩৪৫৬৭৮৯০]/g, function (match) {
|
||||
return numberMap[match];
|
||||
});
|
||||
},
|
||||
postformat: function (string) {
|
||||
return string.replace(/\d/g, function (match) {
|
||||
return symbolMap[match];
|
||||
});
|
||||
},
|
||||
meridiemParse: /রাত|সকাল|দুপুর|বিকাল|রাত/,
|
||||
meridiemHour: function (hour, meridiem) {
|
||||
if (hour === 12) {
|
||||
hour = 0;
|
||||
}
|
||||
if (
|
||||
(meridiem === 'রাত' && hour >= 4) ||
|
||||
(meridiem === 'দুপুর' && hour < 5) ||
|
||||
meridiem === 'বিকাল'
|
||||
) {
|
||||
return hour + 12;
|
||||
} else {
|
||||
return hour;
|
||||
}
|
||||
},
|
||||
meridiem: function (hour, minute, isLower) {
|
||||
if (hour < 4) {
|
||||
return 'রাত';
|
||||
} else if (hour < 10) {
|
||||
return 'সকাল';
|
||||
} else if (hour < 17) {
|
||||
return 'দুপুর';
|
||||
} else if (hour < 20) {
|
||||
return 'বিকাল';
|
||||
} else {
|
||||
return 'রাত';
|
||||
}
|
||||
},
|
||||
week: {
|
||||
dow: 0, // Sunday is the first day of the week.
|
||||
doy: 6, // The week that contains Jan 6th is the first week of the year.
|
||||
},
|
||||
});
|
122
node/node_modules/moment/dist/locale/bo.js
generated
vendored
Normal file
122
node/node_modules/moment/dist/locale/bo.js
generated
vendored
Normal file
|
@ -0,0 +1,122 @@
|
|||
//! moment.js locale configuration
|
||||
//! locale : Tibetan [bo]
|
||||
//! author : Thupten N. Chakrishar : https://github.com/vajradog
|
||||
|
||||
import moment from '../moment';
|
||||
|
||||
var symbolMap = {
|
||||
'1': '༡',
|
||||
'2': '༢',
|
||||
'3': '༣',
|
||||
'4': '༤',
|
||||
'5': '༥',
|
||||
'6': '༦',
|
||||
'7': '༧',
|
||||
'8': '༨',
|
||||
'9': '༩',
|
||||
'0': '༠',
|
||||
},
|
||||
numberMap = {
|
||||
'༡': '1',
|
||||
'༢': '2',
|
||||
'༣': '3',
|
||||
'༤': '4',
|
||||
'༥': '5',
|
||||
'༦': '6',
|
||||
'༧': '7',
|
||||
'༨': '8',
|
||||
'༩': '9',
|
||||
'༠': '0',
|
||||
};
|
||||
|
||||
export default moment.defineLocale('bo', {
|
||||
months: 'ཟླ་བ་དང་པོ_ཟླ་བ་གཉིས་པ_ཟླ་བ་གསུམ་པ_ཟླ་བ་བཞི་པ_ཟླ་བ་ལྔ་པ_ཟླ་བ་དྲུག་པ_ཟླ་བ་བདུན་པ_ཟླ་བ་བརྒྱད་པ_ཟླ་བ་དགུ་པ_ཟླ་བ་བཅུ་པ_ཟླ་བ་བཅུ་གཅིག་པ_ཟླ་བ་བཅུ་གཉིས་པ'.split(
|
||||
'_'
|
||||
),
|
||||
monthsShort: 'ཟླ་1_ཟླ་2_ཟླ་3_ཟླ་4_ཟླ་5_ཟླ་6_ཟླ་7_ཟླ་8_ཟླ་9_ཟླ་10_ཟླ་11_ཟླ་12'.split(
|
||||
'_'
|
||||
),
|
||||
monthsShortRegex: /^(ཟླ་\d{1,2})/,
|
||||
monthsParseExact: true,
|
||||
weekdays: 'གཟའ་ཉི་མ་_གཟའ་ཟླ་བ་_གཟའ་མིག་དམར་_གཟའ་ལྷག་པ་_གཟའ་ཕུར་བུ_གཟའ་པ་སངས་_གཟའ་སྤེན་པ་'.split(
|
||||
'_'
|
||||
),
|
||||
weekdaysShort: 'ཉི་མ་_ཟླ་བ་_མིག་དམར་_ལྷག་པ་_ཕུར་བུ_པ་སངས་_སྤེན་པ་'.split(
|
||||
'_'
|
||||
),
|
||||
weekdaysMin: 'ཉི_ཟླ_མིག_ལྷག_ཕུར_སངས_སྤེན'.split('_'),
|
||||
longDateFormat: {
|
||||
LT: 'A h:mm',
|
||||
LTS: 'A h:mm:ss',
|
||||
L: 'DD/MM/YYYY',
|
||||
LL: 'D MMMM YYYY',
|
||||
LLL: 'D MMMM YYYY, A h:mm',
|
||||
LLLL: 'dddd, D MMMM YYYY, A h:mm',
|
||||
},
|
||||
calendar: {
|
||||
sameDay: '[དི་རིང] LT',
|
||||
nextDay: '[སང་ཉིན] LT',
|
||||
nextWeek: '[བདུན་ཕྲག་རྗེས་མ], LT',
|
||||
lastDay: '[ཁ་སང] LT',
|
||||
lastWeek: '[བདུན་ཕྲག་མཐའ་མ] dddd, LT',
|
||||
sameElse: 'L',
|
||||
},
|
||||
relativeTime: {
|
||||
future: '%s ལ་',
|
||||
past: '%s སྔན་ལ',
|
||||
s: 'ལམ་སང',
|
||||
ss: '%d སྐར་ཆ།',
|
||||
m: 'སྐར་མ་གཅིག',
|
||||
mm: '%d སྐར་མ',
|
||||
h: 'ཆུ་ཚོད་གཅིག',
|
||||
hh: '%d ཆུ་ཚོད',
|
||||
d: 'ཉིན་གཅིག',
|
||||
dd: '%d ཉིན་',
|
||||
M: 'ཟླ་བ་གཅིག',
|
||||
MM: '%d ཟླ་བ',
|
||||
y: 'ལོ་གཅིག',
|
||||
yy: '%d ལོ',
|
||||
},
|
||||
preparse: function (string) {
|
||||
return string.replace(/[༡༢༣༤༥༦༧༨༩༠]/g, function (match) {
|
||||
return numberMap[match];
|
||||
});
|
||||
},
|
||||
postformat: function (string) {
|
||||
return string.replace(/\d/g, function (match) {
|
||||
return symbolMap[match];
|
||||
});
|
||||
},
|
||||
meridiemParse: /མཚན་མོ|ཞོགས་ཀས|ཉིན་གུང|དགོང་དག|མཚན་མོ/,
|
||||
meridiemHour: function (hour, meridiem) {
|
||||
if (hour === 12) {
|
||||
hour = 0;
|
||||
}
|
||||
if (
|
||||
(meridiem === 'མཚན་མོ' && hour >= 4) ||
|
||||
(meridiem === 'ཉིན་གུང' && hour < 5) ||
|
||||
meridiem === 'དགོང་དག'
|
||||
) {
|
||||
return hour + 12;
|
||||
} else {
|
||||
return hour;
|
||||
}
|
||||
},
|
||||
meridiem: function (hour, minute, isLower) {
|
||||
if (hour < 4) {
|
||||
return 'མཚན་མོ';
|
||||
} else if (hour < 10) {
|
||||
return 'ཞོགས་ཀས';
|
||||
} else if (hour < 17) {
|
||||
return 'ཉིན་གུང';
|
||||
} else if (hour < 20) {
|
||||
return 'དགོང་དག';
|
||||
} else {
|
||||
return 'མཚན་མོ';
|
||||
}
|
||||
},
|
||||
week: {
|
||||
dow: 0, // Sunday is the first day of the week.
|
||||
doy: 6, // The week that contains Jan 6th is the first week of the year.
|
||||
},
|
||||
});
|
165
node/node_modules/moment/dist/locale/br.js
generated
vendored
Normal file
165
node/node_modules/moment/dist/locale/br.js
generated
vendored
Normal file
|
@ -0,0 +1,165 @@
|
|||
//! moment.js locale configuration
|
||||
//! locale : Breton [br]
|
||||
//! author : Jean-Baptiste Le Duigou : https://github.com/jbleduigou
|
||||
|
||||
import moment from '../moment';
|
||||
|
||||
function relativeTimeWithMutation(number, withoutSuffix, key) {
|
||||
var format = {
|
||||
mm: 'munutenn',
|
||||
MM: 'miz',
|
||||
dd: 'devezh',
|
||||
};
|
||||
return number + ' ' + mutation(format[key], number);
|
||||
}
|
||||
function specialMutationForYears(number) {
|
||||
switch (lastNumber(number)) {
|
||||
case 1:
|
||||
case 3:
|
||||
case 4:
|
||||
case 5:
|
||||
case 9:
|
||||
return number + ' bloaz';
|
||||
default:
|
||||
return number + ' vloaz';
|
||||
}
|
||||
}
|
||||
function lastNumber(number) {
|
||||
if (number > 9) {
|
||||
return lastNumber(number % 10);
|
||||
}
|
||||
return number;
|
||||
}
|
||||
function mutation(text, number) {
|
||||
if (number === 2) {
|
||||
return softMutation(text);
|
||||
}
|
||||
return text;
|
||||
}
|
||||
function softMutation(text) {
|
||||
var mutationTable = {
|
||||
m: 'v',
|
||||
b: 'v',
|
||||
d: 'z',
|
||||
};
|
||||
if (mutationTable[text.charAt(0)] === undefined) {
|
||||
return text;
|
||||
}
|
||||
return mutationTable[text.charAt(0)] + text.substring(1);
|
||||
}
|
||||
|
||||
var monthsParse = [
|
||||
/^gen/i,
|
||||
/^c[ʼ\']hwe/i,
|
||||
/^meu/i,
|
||||
/^ebr/i,
|
||||
/^mae/i,
|
||||
/^(mez|eve)/i,
|
||||
/^gou/i,
|
||||
/^eos/i,
|
||||
/^gwe/i,
|
||||
/^her/i,
|
||||
/^du/i,
|
||||
/^ker/i,
|
||||
],
|
||||
monthsRegex = /^(genver|c[ʼ\']hwevrer|meurzh|ebrel|mae|mezheven|gouere|eost|gwengolo|here|du|kerzu|gen|c[ʼ\']hwe|meu|ebr|mae|eve|gou|eos|gwe|her|du|ker)/i,
|
||||
monthsStrictRegex = /^(genver|c[ʼ\']hwevrer|meurzh|ebrel|mae|mezheven|gouere|eost|gwengolo|here|du|kerzu)/i,
|
||||
monthsShortStrictRegex = /^(gen|c[ʼ\']hwe|meu|ebr|mae|eve|gou|eos|gwe|her|du|ker)/i,
|
||||
fullWeekdaysParse = [
|
||||
/^sul/i,
|
||||
/^lun/i,
|
||||
/^meurzh/i,
|
||||
/^merc[ʼ\']her/i,
|
||||
/^yaou/i,
|
||||
/^gwener/i,
|
||||
/^sadorn/i,
|
||||
],
|
||||
shortWeekdaysParse = [
|
||||
/^Sul/i,
|
||||
/^Lun/i,
|
||||
/^Meu/i,
|
||||
/^Mer/i,
|
||||
/^Yao/i,
|
||||
/^Gwe/i,
|
||||
/^Sad/i,
|
||||
],
|
||||
minWeekdaysParse = [
|
||||
/^Su/i,
|
||||
/^Lu/i,
|
||||
/^Me([^r]|$)/i,
|
||||
/^Mer/i,
|
||||
/^Ya/i,
|
||||
/^Gw/i,
|
||||
/^Sa/i,
|
||||
];
|
||||
|
||||
export default moment.defineLocale('br', {
|
||||
months: 'Genver_Cʼhwevrer_Meurzh_Ebrel_Mae_Mezheven_Gouere_Eost_Gwengolo_Here_Du_Kerzu'.split(
|
||||
'_'
|
||||
),
|
||||
monthsShort: 'Gen_Cʼhwe_Meu_Ebr_Mae_Eve_Gou_Eos_Gwe_Her_Du_Ker'.split('_'),
|
||||
weekdays: 'Sul_Lun_Meurzh_Mercʼher_Yaou_Gwener_Sadorn'.split('_'),
|
||||
weekdaysShort: 'Sul_Lun_Meu_Mer_Yao_Gwe_Sad'.split('_'),
|
||||
weekdaysMin: 'Su_Lu_Me_Mer_Ya_Gw_Sa'.split('_'),
|
||||
weekdaysParse: minWeekdaysParse,
|
||||
fullWeekdaysParse: fullWeekdaysParse,
|
||||
shortWeekdaysParse: shortWeekdaysParse,
|
||||
minWeekdaysParse: minWeekdaysParse,
|
||||
|
||||
monthsRegex: monthsRegex,
|
||||
monthsShortRegex: monthsRegex,
|
||||
monthsStrictRegex: monthsStrictRegex,
|
||||
monthsShortStrictRegex: monthsShortStrictRegex,
|
||||
monthsParse: monthsParse,
|
||||
longMonthsParse: monthsParse,
|
||||
shortMonthsParse: monthsParse,
|
||||
|
||||
longDateFormat: {
|
||||
LT: 'HH:mm',
|
||||
LTS: 'HH:mm:ss',
|
||||
L: 'DD/MM/YYYY',
|
||||
LL: 'D [a viz] MMMM YYYY',
|
||||
LLL: 'D [a viz] MMMM YYYY HH:mm',
|
||||
LLLL: 'dddd, D [a viz] MMMM YYYY HH:mm',
|
||||
},
|
||||
calendar: {
|
||||
sameDay: '[Hiziv da] LT',
|
||||
nextDay: '[Warcʼhoazh da] LT',
|
||||
nextWeek: 'dddd [da] LT',
|
||||
lastDay: '[Decʼh da] LT',
|
||||
lastWeek: 'dddd [paset da] LT',
|
||||
sameElse: 'L',
|
||||
},
|
||||
relativeTime: {
|
||||
future: 'a-benn %s',
|
||||
past: '%s ʼzo',
|
||||
s: 'un nebeud segondennoù',
|
||||
ss: '%d eilenn',
|
||||
m: 'ur vunutenn',
|
||||
mm: relativeTimeWithMutation,
|
||||
h: 'un eur',
|
||||
hh: '%d eur',
|
||||
d: 'un devezh',
|
||||
dd: relativeTimeWithMutation,
|
||||
M: 'ur miz',
|
||||
MM: relativeTimeWithMutation,
|
||||
y: 'ur bloaz',
|
||||
yy: specialMutationForYears,
|
||||
},
|
||||
dayOfMonthOrdinalParse: /\d{1,2}(añ|vet)/,
|
||||
ordinal: function (number) {
|
||||
var output = number === 1 ? 'añ' : 'vet';
|
||||
return number + output;
|
||||
},
|
||||
week: {
|
||||
dow: 1, // Monday is the first day of the week.
|
||||
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
||||
},
|
||||
meridiemParse: /a.m.|g.m./, // goude merenn | a-raok merenn
|
||||
isPM: function (token) {
|
||||
return token === 'g.m.';
|
||||
},
|
||||
meridiem: function (hour, minute, isLower) {
|
||||
return hour < 12 ? 'a.m.' : 'g.m.';
|
||||
},
|
||||
});
|
149
node/node_modules/moment/dist/locale/bs.js
generated
vendored
Normal file
149
node/node_modules/moment/dist/locale/bs.js
generated
vendored
Normal file
|
@ -0,0 +1,149 @@
|
|||
//! moment.js locale configuration
|
||||
//! locale : Bosnian [bs]
|
||||
//! author : Nedim Cholich : https://github.com/frontyard
|
||||
//! based on (hr) translation by Bojan Marković
|
||||
|
||||
import moment from '../moment';
|
||||
|
||||
function translate(number, withoutSuffix, key) {
|
||||
var result = number + ' ';
|
||||
switch (key) {
|
||||
case 'ss':
|
||||
if (number === 1) {
|
||||
result += 'sekunda';
|
||||
} else if (number === 2 || number === 3 || number === 4) {
|
||||
result += 'sekunde';
|
||||
} else {
|
||||
result += 'sekundi';
|
||||
}
|
||||
return result;
|
||||
case 'm':
|
||||
return withoutSuffix ? 'jedna minuta' : 'jedne minute';
|
||||
case 'mm':
|
||||
if (number === 1) {
|
||||
result += 'minuta';
|
||||
} else if (number === 2 || number === 3 || number === 4) {
|
||||
result += 'minute';
|
||||
} else {
|
||||
result += 'minuta';
|
||||
}
|
||||
return result;
|
||||
case 'h':
|
||||
return withoutSuffix ? 'jedan sat' : 'jednog sata';
|
||||
case 'hh':
|
||||
if (number === 1) {
|
||||
result += 'sat';
|
||||
} else if (number === 2 || number === 3 || number === 4) {
|
||||
result += 'sata';
|
||||
} else {
|
||||
result += 'sati';
|
||||
}
|
||||
return result;
|
||||
case 'dd':
|
||||
if (number === 1) {
|
||||
result += 'dan';
|
||||
} else {
|
||||
result += 'dana';
|
||||
}
|
||||
return result;
|
||||
case 'MM':
|
||||
if (number === 1) {
|
||||
result += 'mjesec';
|
||||
} else if (number === 2 || number === 3 || number === 4) {
|
||||
result += 'mjeseca';
|
||||
} else {
|
||||
result += 'mjeseci';
|
||||
}
|
||||
return result;
|
||||
case 'yy':
|
||||
if (number === 1) {
|
||||
result += 'godina';
|
||||
} else if (number === 2 || number === 3 || number === 4) {
|
||||
result += 'godine';
|
||||
} else {
|
||||
result += 'godina';
|
||||
}
|
||||
return result;
|
||||
}
|
||||
}
|
||||
|
||||
export default moment.defineLocale('bs', {
|
||||
months: 'januar_februar_mart_april_maj_juni_juli_august_septembar_oktobar_novembar_decembar'.split(
|
||||
'_'
|
||||
),
|
||||
monthsShort: 'jan._feb._mar._apr._maj._jun._jul._aug._sep._okt._nov._dec.'.split(
|
||||
'_'
|
||||
),
|
||||
monthsParseExact: true,
|
||||
weekdays: 'nedjelja_ponedjeljak_utorak_srijeda_četvrtak_petak_subota'.split(
|
||||
'_'
|
||||
),
|
||||
weekdaysShort: 'ned._pon._uto._sri._čet._pet._sub.'.split('_'),
|
||||
weekdaysMin: 'ne_po_ut_sr_če_pe_su'.split('_'),
|
||||
weekdaysParseExact: true,
|
||||
longDateFormat: {
|
||||
LT: 'H:mm',
|
||||
LTS: 'H:mm:ss',
|
||||
L: 'DD.MM.YYYY',
|
||||
LL: 'D. MMMM YYYY',
|
||||
LLL: 'D. MMMM YYYY H:mm',
|
||||
LLLL: 'dddd, D. MMMM YYYY H:mm',
|
||||
},
|
||||
calendar: {
|
||||
sameDay: '[danas u] LT',
|
||||
nextDay: '[sutra u] LT',
|
||||
nextWeek: function () {
|
||||
switch (this.day()) {
|
||||
case 0:
|
||||
return '[u] [nedjelju] [u] LT';
|
||||
case 3:
|
||||
return '[u] [srijedu] [u] LT';
|
||||
case 6:
|
||||
return '[u] [subotu] [u] LT';
|
||||
case 1:
|
||||
case 2:
|
||||
case 4:
|
||||
case 5:
|
||||
return '[u] dddd [u] LT';
|
||||
}
|
||||
},
|
||||
lastDay: '[jučer u] LT',
|
||||
lastWeek: function () {
|
||||
switch (this.day()) {
|
||||
case 0:
|
||||
case 3:
|
||||
return '[prošlu] dddd [u] LT';
|
||||
case 6:
|
||||
return '[prošle] [subote] [u] LT';
|
||||
case 1:
|
||||
case 2:
|
||||
case 4:
|
||||
case 5:
|
||||
return '[prošli] dddd [u] LT';
|
||||
}
|
||||
},
|
||||
sameElse: 'L',
|
||||
},
|
||||
relativeTime: {
|
||||
future: 'za %s',
|
||||
past: 'prije %s',
|
||||
s: 'par sekundi',
|
||||
ss: translate,
|
||||
m: translate,
|
||||
mm: translate,
|
||||
h: translate,
|
||||
hh: translate,
|
||||
d: 'dan',
|
||||
dd: translate,
|
||||
M: 'mjesec',
|
||||
MM: translate,
|
||||
y: 'godinu',
|
||||
yy: translate,
|
||||
},
|
||||
dayOfMonthOrdinalParse: /\d{1,2}\./,
|
||||
ordinal: '%d.',
|
||||
week: {
|
||||
dow: 1, // Monday is the first day of the week.
|
||||
doy: 7, // The week that contains Jan 7th is the first week of the year.
|
||||
},
|
||||
});
|
97
node/node_modules/moment/dist/locale/ca.js
generated
vendored
Normal file
97
node/node_modules/moment/dist/locale/ca.js
generated
vendored
Normal file
|
@ -0,0 +1,97 @@
|
|||
//! moment.js locale configuration
|
||||
//! locale : Catalan [ca]
|
||||
//! author : Juan G. Hurtado : https://github.com/juanghurtado
|
||||
|
||||
import moment from '../moment';
|
||||
|
||||
export default moment.defineLocale('ca', {
|
||||
months: {
|
||||
standalone: 'gener_febrer_març_abril_maig_juny_juliol_agost_setembre_octubre_novembre_desembre'.split(
|
||||
'_'
|
||||
),
|
||||
format: "de gener_de febrer_de març_d'abril_de maig_de juny_de juliol_d'agost_de setembre_d'octubre_de novembre_de desembre".split(
|
||||
'_'
|
||||
),
|
||||
isFormat: /D[oD]?(\s)+MMMM/,
|
||||
},
|
||||
monthsShort: 'gen._febr._març_abr._maig_juny_jul._ag._set._oct._nov._des.'.split(
|
||||
'_'
|
||||
),
|
||||
monthsParseExact: true,
|
||||
weekdays: 'diumenge_dilluns_dimarts_dimecres_dijous_divendres_dissabte'.split(
|
||||
'_'
|
||||
),
|
||||
weekdaysShort: 'dg._dl._dt._dc._dj._dv._ds.'.split('_'),
|
||||
weekdaysMin: 'dg_dl_dt_dc_dj_dv_ds'.split('_'),
|
||||
weekdaysParseExact: true,
|
||||
longDateFormat: {
|
||||
LT: 'H:mm',
|
||||
LTS: 'H:mm:ss',
|
||||
L: 'DD/MM/YYYY',
|
||||
LL: 'D MMMM [de] YYYY',
|
||||
ll: 'D MMM YYYY',
|
||||
LLL: 'D MMMM [de] YYYY [a les] H:mm',
|
||||
lll: 'D MMM YYYY, H:mm',
|
||||
LLLL: 'dddd D MMMM [de] YYYY [a les] H:mm',
|
||||
llll: 'ddd D MMM YYYY, H:mm',
|
||||
},
|
||||
calendar: {
|
||||
sameDay: function () {
|
||||
return '[avui a ' + (this.hours() !== 1 ? 'les' : 'la') + '] LT';
|
||||
},
|
||||
nextDay: function () {
|
||||
return '[demà a ' + (this.hours() !== 1 ? 'les' : 'la') + '] LT';
|
||||
},
|
||||
nextWeek: function () {
|
||||
return 'dddd [a ' + (this.hours() !== 1 ? 'les' : 'la') + '] LT';
|
||||
},
|
||||
lastDay: function () {
|
||||
return '[ahir a ' + (this.hours() !== 1 ? 'les' : 'la') + '] LT';
|
||||
},
|
||||
lastWeek: function () {
|
||||
return (
|
||||
'[el] dddd [passat a ' +
|
||||
(this.hours() !== 1 ? 'les' : 'la') +
|
||||
'] LT'
|
||||
);
|
||||
},
|
||||
sameElse: 'L',
|
||||
},
|
||||
relativeTime: {
|
||||
future: "d'aquí %s",
|
||||
past: 'fa %s',
|
||||
s: 'uns segons',
|
||||
ss: '%d segons',
|
||||
m: 'un minut',
|
||||
mm: '%d minuts',
|
||||
h: 'una hora',
|
||||
hh: '%d hores',
|
||||
d: 'un dia',
|
||||
dd: '%d dies',
|
||||
M: 'un mes',
|
||||
MM: '%d mesos',
|
||||
y: 'un any',
|
||||
yy: '%d anys',
|
||||
},
|
||||
dayOfMonthOrdinalParse: /\d{1,2}(r|n|t|è|a)/,
|
||||
ordinal: function (number, period) {
|
||||
var output =
|
||||
number === 1
|
||||
? 'r'
|
||||
: number === 2
|
||||
? 'n'
|
||||
: number === 3
|
||||
? 'r'
|
||||
: number === 4
|
||||
? 't'
|
||||
: 'è';
|
||||
if (period === 'w' || period === 'W') {
|
||||
output = 'a';
|
||||
}
|
||||
return number + output;
|
||||
},
|
||||
week: {
|
||||
dow: 1, // Monday is the first day of the week.
|
||||
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
||||
},
|
||||
});
|
171
node/node_modules/moment/dist/locale/cs.js
generated
vendored
Normal file
171
node/node_modules/moment/dist/locale/cs.js
generated
vendored
Normal file
|
@ -0,0 +1,171 @@
|
|||
//! moment.js locale configuration
|
||||
//! locale : Czech [cs]
|
||||
//! author : petrbela : https://github.com/petrbela
|
||||
|
||||
import moment from '../moment';
|
||||
|
||||
var months = 'leden_únor_březen_duben_květen_červen_červenec_srpen_září_říjen_listopad_prosinec'.split(
|
||||
'_'
|
||||
),
|
||||
monthsShort = 'led_úno_bře_dub_kvě_čvn_čvc_srp_zář_říj_lis_pro'.split('_'),
|
||||
monthsParse = [
|
||||
/^led/i,
|
||||
/^úno/i,
|
||||
/^bře/i,
|
||||
/^dub/i,
|
||||
/^kvě/i,
|
||||
/^(čvn|červen$|června)/i,
|
||||
/^(čvc|červenec|července)/i,
|
||||
/^srp/i,
|
||||
/^zář/i,
|
||||
/^říj/i,
|
||||
/^lis/i,
|
||||
/^pro/i,
|
||||
],
|
||||
// NOTE: 'červen' is substring of 'červenec'; therefore 'červenec' must precede 'červen' in the regex to be fully matched.
|
||||
// Otherwise parser matches '1. červenec' as '1. červen' + 'ec'.
|
||||
monthsRegex = /^(leden|únor|březen|duben|květen|červenec|července|červen|června|srpen|září|říjen|listopad|prosinec|led|úno|bře|dub|kvě|čvn|čvc|srp|zář|říj|lis|pro)/i;
|
||||
|
||||
function plural(n) {
|
||||
return n > 1 && n < 5 && ~~(n / 10) !== 1;
|
||||
}
|
||||
function translate(number, withoutSuffix, key, isFuture) {
|
||||
var result = number + ' ';
|
||||
switch (key) {
|
||||
case 's': // a few seconds / in a few seconds / a few seconds ago
|
||||
return withoutSuffix || isFuture ? 'pár sekund' : 'pár sekundami';
|
||||
case 'ss': // 9 seconds / in 9 seconds / 9 seconds ago
|
||||
if (withoutSuffix || isFuture) {
|
||||
return result + (plural(number) ? 'sekundy' : 'sekund');
|
||||
} else {
|
||||
return result + 'sekundami';
|
||||
}
|
||||
case 'm': // a minute / in a minute / a minute ago
|
||||
return withoutSuffix ? 'minuta' : isFuture ? 'minutu' : 'minutou';
|
||||
case 'mm': // 9 minutes / in 9 minutes / 9 minutes ago
|
||||
if (withoutSuffix || isFuture) {
|
||||
return result + (plural(number) ? 'minuty' : 'minut');
|
||||
} else {
|
||||
return result + 'minutami';
|
||||
}
|
||||
case 'h': // an hour / in an hour / an hour ago
|
||||
return withoutSuffix ? 'hodina' : isFuture ? 'hodinu' : 'hodinou';
|
||||
case 'hh': // 9 hours / in 9 hours / 9 hours ago
|
||||
if (withoutSuffix || isFuture) {
|
||||
return result + (plural(number) ? 'hodiny' : 'hodin');
|
||||
} else {
|
||||
return result + 'hodinami';
|
||||
}
|
||||
case 'd': // a day / in a day / a day ago
|
||||
return withoutSuffix || isFuture ? 'den' : 'dnem';
|
||||
case 'dd': // 9 days / in 9 days / 9 days ago
|
||||
if (withoutSuffix || isFuture) {
|
||||
return result + (plural(number) ? 'dny' : 'dní');
|
||||
} else {
|
||||
return result + 'dny';
|
||||
}
|
||||
case 'M': // a month / in a month / a month ago
|
||||
return withoutSuffix || isFuture ? 'měsíc' : 'měsícem';
|
||||
case 'MM': // 9 months / in 9 months / 9 months ago
|
||||
if (withoutSuffix || isFuture) {
|
||||
return result + (plural(number) ? 'měsíce' : 'měsíců');
|
||||
} else {
|
||||
return result + 'měsíci';
|
||||
}
|
||||
case 'y': // a year / in a year / a year ago
|
||||
return withoutSuffix || isFuture ? 'rok' : 'rokem';
|
||||
case 'yy': // 9 years / in 9 years / 9 years ago
|
||||
if (withoutSuffix || isFuture) {
|
||||
return result + (plural(number) ? 'roky' : 'let');
|
||||
} else {
|
||||
return result + 'lety';
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
export default moment.defineLocale('cs', {
|
||||
months: months,
|
||||
monthsShort: monthsShort,
|
||||
monthsRegex: monthsRegex,
|
||||
monthsShortRegex: monthsRegex,
|
||||
// NOTE: 'červen' is substring of 'červenec'; therefore 'červenec' must precede 'červen' in the regex to be fully matched.
|
||||
// Otherwise parser matches '1. červenec' as '1. červen' + 'ec'.
|
||||
monthsStrictRegex: /^(leden|ledna|února|únor|březen|března|duben|dubna|květen|května|červenec|července|červen|června|srpen|srpna|září|říjen|října|listopadu|listopad|prosinec|prosince)/i,
|
||||
monthsShortStrictRegex: /^(led|úno|bře|dub|kvě|čvn|čvc|srp|zář|říj|lis|pro)/i,
|
||||
monthsParse: monthsParse,
|
||||
longMonthsParse: monthsParse,
|
||||
shortMonthsParse: monthsParse,
|
||||
weekdays: 'neděle_pondělí_úterý_středa_čtvrtek_pátek_sobota'.split('_'),
|
||||
weekdaysShort: 'ne_po_út_st_čt_pá_so'.split('_'),
|
||||
weekdaysMin: 'ne_po_út_st_čt_pá_so'.split('_'),
|
||||
longDateFormat: {
|
||||
LT: 'H:mm',
|
||||
LTS: 'H:mm:ss',
|
||||
L: 'DD.MM.YYYY',
|
||||
LL: 'D. MMMM YYYY',
|
||||
LLL: 'D. MMMM YYYY H:mm',
|
||||
LLLL: 'dddd D. MMMM YYYY H:mm',
|
||||
l: 'D. M. YYYY',
|
||||
},
|
||||
calendar: {
|
||||
sameDay: '[dnes v] LT',
|
||||
nextDay: '[zítra v] LT',
|
||||
nextWeek: function () {
|
||||
switch (this.day()) {
|
||||
case 0:
|
||||
return '[v neděli v] LT';
|
||||
case 1:
|
||||
case 2:
|
||||
return '[v] dddd [v] LT';
|
||||
case 3:
|
||||
return '[ve středu v] LT';
|
||||
case 4:
|
||||
return '[ve čtvrtek v] LT';
|
||||
case 5:
|
||||
return '[v pátek v] LT';
|
||||
case 6:
|
||||
return '[v sobotu v] LT';
|
||||
}
|
||||
},
|
||||
lastDay: '[včera v] LT',
|
||||
lastWeek: function () {
|
||||
switch (this.day()) {
|
||||
case 0:
|
||||
return '[minulou neděli v] LT';
|
||||
case 1:
|
||||
case 2:
|
||||
return '[minulé] dddd [v] LT';
|
||||
case 3:
|
||||
return '[minulou středu v] LT';
|
||||
case 4:
|
||||
case 5:
|
||||
return '[minulý] dddd [v] LT';
|
||||
case 6:
|
||||
return '[minulou sobotu v] LT';
|
||||
}
|
||||
},
|
||||
sameElse: 'L',
|
||||
},
|
||||
relativeTime: {
|
||||
future: 'za %s',
|
||||
past: 'před %s',
|
||||
s: translate,
|
||||
ss: translate,
|
||||
m: translate,
|
||||
mm: translate,
|
||||
h: translate,
|
||||
hh: translate,
|
||||
d: translate,
|
||||
dd: translate,
|
||||
M: translate,
|
||||
MM: translate,
|
||||
y: translate,
|
||||
yy: translate,
|
||||
},
|
||||
dayOfMonthOrdinalParse: /\d{1,2}\./,
|
||||
ordinal: '%d.',
|
||||
week: {
|
||||
dow: 1, // Monday is the first day of the week.
|
||||
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
||||
},
|
||||
});
|
62
node/node_modules/moment/dist/locale/cv.js
generated
vendored
Normal file
62
node/node_modules/moment/dist/locale/cv.js
generated
vendored
Normal file
|
@ -0,0 +1,62 @@
|
|||
//! moment.js locale configuration
|
||||
//! locale : Chuvash [cv]
|
||||
//! author : Anatoly Mironov : https://github.com/mirontoli
|
||||
|
||||
import moment from '../moment';
|
||||
|
||||
export default moment.defineLocale('cv', {
|
||||
months: 'кӑрлач_нарӑс_пуш_ака_май_ҫӗртме_утӑ_ҫурла_авӑн_юпа_чӳк_раштав'.split(
|
||||
'_'
|
||||
),
|
||||
monthsShort: 'кӑр_нар_пуш_ака_май_ҫӗр_утӑ_ҫур_авн_юпа_чӳк_раш'.split('_'),
|
||||
weekdays: 'вырсарникун_тунтикун_ытларикун_юнкун_кӗҫнерникун_эрнекун_шӑматкун'.split(
|
||||
'_'
|
||||
),
|
||||
weekdaysShort: 'выр_тун_ытл_юн_кӗҫ_эрн_шӑм'.split('_'),
|
||||
weekdaysMin: 'вр_тн_ыт_юн_кҫ_эр_шм'.split('_'),
|
||||
longDateFormat: {
|
||||
LT: 'HH:mm',
|
||||
LTS: 'HH:mm:ss',
|
||||
L: 'DD-MM-YYYY',
|
||||
LL: 'YYYY [ҫулхи] MMMM [уйӑхӗн] D[-мӗшӗ]',
|
||||
LLL: 'YYYY [ҫулхи] MMMM [уйӑхӗн] D[-мӗшӗ], HH:mm',
|
||||
LLLL: 'dddd, YYYY [ҫулхи] MMMM [уйӑхӗн] D[-мӗшӗ], HH:mm',
|
||||
},
|
||||
calendar: {
|
||||
sameDay: '[Паян] LT [сехетре]',
|
||||
nextDay: '[Ыран] LT [сехетре]',
|
||||
lastDay: '[Ӗнер] LT [сехетре]',
|
||||
nextWeek: '[Ҫитес] dddd LT [сехетре]',
|
||||
lastWeek: '[Иртнӗ] dddd LT [сехетре]',
|
||||
sameElse: 'L',
|
||||
},
|
||||
relativeTime: {
|
||||
future: function (output) {
|
||||
var affix = /сехет$/i.exec(output)
|
||||
? 'рен'
|
||||
: /ҫул$/i.exec(output)
|
||||
? 'тан'
|
||||
: 'ран';
|
||||
return output + affix;
|
||||
},
|
||||
past: '%s каялла',
|
||||
s: 'пӗр-ик ҫеккунт',
|
||||
ss: '%d ҫеккунт',
|
||||
m: 'пӗр минут',
|
||||
mm: '%d минут',
|
||||
h: 'пӗр сехет',
|
||||
hh: '%d сехет',
|
||||
d: 'пӗр кун',
|
||||
dd: '%d кун',
|
||||
M: 'пӗр уйӑх',
|
||||
MM: '%d уйӑх',
|
||||
y: 'пӗр ҫул',
|
||||
yy: '%d ҫул',
|
||||
},
|
||||
dayOfMonthOrdinalParse: /\d{1,2}-мӗш/,
|
||||
ordinal: '%d-мӗш',
|
||||
week: {
|
||||
dow: 1, // Monday is the first day of the week.
|
||||
doy: 7, // The week that contains Jan 7th is the first week of the year.
|
||||
},
|
||||
});
|
97
node/node_modules/moment/dist/locale/cy.js
generated
vendored
Normal file
97
node/node_modules/moment/dist/locale/cy.js
generated
vendored
Normal file
|
@ -0,0 +1,97 @@
|
|||
//! moment.js locale configuration
|
||||
//! locale : Welsh [cy]
|
||||
//! author : Robert Allen : https://github.com/robgallen
|
||||
//! author : https://github.com/ryangreaves
|
||||
|
||||
import moment from '../moment';
|
||||
|
||||
export default moment.defineLocale('cy', {
|
||||
months: 'Ionawr_Chwefror_Mawrth_Ebrill_Mai_Mehefin_Gorffennaf_Awst_Medi_Hydref_Tachwedd_Rhagfyr'.split(
|
||||
'_'
|
||||
),
|
||||
monthsShort: 'Ion_Chwe_Maw_Ebr_Mai_Meh_Gor_Aws_Med_Hyd_Tach_Rhag'.split(
|
||||
'_'
|
||||
),
|
||||
weekdays: 'Dydd Sul_Dydd Llun_Dydd Mawrth_Dydd Mercher_Dydd Iau_Dydd Gwener_Dydd Sadwrn'.split(
|
||||
'_'
|
||||
),
|
||||
weekdaysShort: 'Sul_Llun_Maw_Mer_Iau_Gwe_Sad'.split('_'),
|
||||
weekdaysMin: 'Su_Ll_Ma_Me_Ia_Gw_Sa'.split('_'),
|
||||
weekdaysParseExact: true,
|
||||
// time formats are the same as en-gb
|
||||
longDateFormat: {
|
||||
LT: 'HH:mm',
|
||||
LTS: 'HH:mm:ss',
|
||||
L: 'DD/MM/YYYY',
|
||||
LL: 'D MMMM YYYY',
|
||||
LLL: 'D MMMM YYYY HH:mm',
|
||||
LLLL: 'dddd, D MMMM YYYY HH:mm',
|
||||
},
|
||||
calendar: {
|
||||
sameDay: '[Heddiw am] LT',
|
||||
nextDay: '[Yfory am] LT',
|
||||
nextWeek: 'dddd [am] LT',
|
||||
lastDay: '[Ddoe am] LT',
|
||||
lastWeek: 'dddd [diwethaf am] LT',
|
||||
sameElse: 'L',
|
||||
},
|
||||
relativeTime: {
|
||||
future: 'mewn %s',
|
||||
past: '%s yn ôl',
|
||||
s: 'ychydig eiliadau',
|
||||
ss: '%d eiliad',
|
||||
m: 'munud',
|
||||
mm: '%d munud',
|
||||
h: 'awr',
|
||||
hh: '%d awr',
|
||||
d: 'diwrnod',
|
||||
dd: '%d diwrnod',
|
||||
M: 'mis',
|
||||
MM: '%d mis',
|
||||
y: 'blwyddyn',
|
||||
yy: '%d flynedd',
|
||||
},
|
||||
dayOfMonthOrdinalParse: /\d{1,2}(fed|ain|af|il|ydd|ed|eg)/,
|
||||
// traditional ordinal numbers above 31 are not commonly used in colloquial Welsh
|
||||
ordinal: function (number) {
|
||||
var b = number,
|
||||
output = '',
|
||||
lookup = [
|
||||
'',
|
||||
'af',
|
||||
'il',
|
||||
'ydd',
|
||||
'ydd',
|
||||
'ed',
|
||||
'ed',
|
||||
'ed',
|
||||
'fed',
|
||||
'fed',
|
||||
'fed', // 1af to 10fed
|
||||
'eg',
|
||||
'fed',
|
||||
'eg',
|
||||
'eg',
|
||||
'fed',
|
||||
'eg',
|
||||
'eg',
|
||||
'fed',
|
||||
'eg',
|
||||
'fed', // 11eg to 20fed
|
||||
];
|
||||
if (b > 20) {
|
||||
if (b === 40 || b === 50 || b === 60 || b === 80 || b === 100) {
|
||||
output = 'fed'; // not 30ain, 70ain or 90ain
|
||||
} else {
|
||||
output = 'ain';
|
||||
}
|
||||
} else if (b > 0) {
|
||||
output = lookup[b];
|
||||
}
|
||||
return number + output;
|
||||
},
|
||||
week: {
|
||||
dow: 1, // Monday is the first day of the week.
|
||||
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
||||
},
|
||||
});
|
53
node/node_modules/moment/dist/locale/da.js
generated
vendored
Normal file
53
node/node_modules/moment/dist/locale/da.js
generated
vendored
Normal file
|
@ -0,0 +1,53 @@
|
|||
//! moment.js locale configuration
|
||||
//! locale : Danish [da]
|
||||
//! author : Ulrik Nielsen : https://github.com/mrbase
|
||||
|
||||
import moment from '../moment';
|
||||
|
||||
export default moment.defineLocale('da', {
|
||||
months: 'januar_februar_marts_april_maj_juni_juli_august_september_oktober_november_december'.split(
|
||||
'_'
|
||||
),
|
||||
monthsShort: 'jan_feb_mar_apr_maj_jun_jul_aug_sep_okt_nov_dec'.split('_'),
|
||||
weekdays: 'søndag_mandag_tirsdag_onsdag_torsdag_fredag_lørdag'.split('_'),
|
||||
weekdaysShort: 'søn_man_tir_ons_tor_fre_lør'.split('_'),
|
||||
weekdaysMin: 'sø_ma_ti_on_to_fr_lø'.split('_'),
|
||||
longDateFormat: {
|
||||
LT: 'HH:mm',
|
||||
LTS: 'HH:mm:ss',
|
||||
L: 'DD.MM.YYYY',
|
||||
LL: 'D. MMMM YYYY',
|
||||
LLL: 'D. MMMM YYYY HH:mm',
|
||||
LLLL: 'dddd [d.] D. MMMM YYYY [kl.] HH:mm',
|
||||
},
|
||||
calendar: {
|
||||
sameDay: '[i dag kl.] LT',
|
||||
nextDay: '[i morgen kl.] LT',
|
||||
nextWeek: 'på dddd [kl.] LT',
|
||||
lastDay: '[i går kl.] LT',
|
||||
lastWeek: '[i] dddd[s kl.] LT',
|
||||
sameElse: 'L',
|
||||
},
|
||||
relativeTime: {
|
||||
future: 'om %s',
|
||||
past: '%s siden',
|
||||
s: 'få sekunder',
|
||||
ss: '%d sekunder',
|
||||
m: 'et minut',
|
||||
mm: '%d minutter',
|
||||
h: 'en time',
|
||||
hh: '%d timer',
|
||||
d: 'en dag',
|
||||
dd: '%d dage',
|
||||
M: 'en måned',
|
||||
MM: '%d måneder',
|
||||
y: 'et år',
|
||||
yy: '%d år',
|
||||
},
|
||||
dayOfMonthOrdinalParse: /\d{1,2}\./,
|
||||
ordinal: '%d.',
|
||||
week: {
|
||||
dow: 1, // Monday is the first day of the week.
|
||||
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
||||
},
|
||||
});
|
76
node/node_modules/moment/dist/locale/de-at.js
generated
vendored
Normal file
76
node/node_modules/moment/dist/locale/de-at.js
generated
vendored
Normal file
|
@ -0,0 +1,76 @@
|
|||
//! moment.js locale configuration
|
||||
//! locale : German (Austria) [de-at]
|
||||
//! author : lluchs : https://github.com/lluchs
|
||||
//! author: Menelion Elensúle: https://github.com/Oire
|
||||
//! author : Martin Groller : https://github.com/MadMG
|
||||
//! author : Mikolaj Dadela : https://github.com/mik01aj
|
||||
|
||||
import moment from '../moment';
|
||||
|
||||
function processRelativeTime(number, withoutSuffix, key, isFuture) {
|
||||
var format = {
|
||||
m: ['eine Minute', 'einer Minute'],
|
||||
h: ['eine Stunde', 'einer Stunde'],
|
||||
d: ['ein Tag', 'einem Tag'],
|
||||
dd: [number + ' Tage', number + ' Tagen'],
|
||||
M: ['ein Monat', 'einem Monat'],
|
||||
MM: [number + ' Monate', number + ' Monaten'],
|
||||
y: ['ein Jahr', 'einem Jahr'],
|
||||
yy: [number + ' Jahre', number + ' Jahren'],
|
||||
};
|
||||
return withoutSuffix ? format[key][0] : format[key][1];
|
||||
}
|
||||
|
||||
export default moment.defineLocale('de-at', {
|
||||
months: 'Jänner_Februar_März_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember'.split(
|
||||
'_'
|
||||
),
|
||||
monthsShort: 'Jän._Feb._März_Apr._Mai_Juni_Juli_Aug._Sep._Okt._Nov._Dez.'.split(
|
||||
'_'
|
||||
),
|
||||
monthsParseExact: true,
|
||||
weekdays: 'Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag'.split(
|
||||
'_'
|
||||
),
|
||||
weekdaysShort: 'So._Mo._Di._Mi._Do._Fr._Sa.'.split('_'),
|
||||
weekdaysMin: 'So_Mo_Di_Mi_Do_Fr_Sa'.split('_'),
|
||||
weekdaysParseExact: true,
|
||||
longDateFormat: {
|
||||
LT: 'HH:mm',
|
||||
LTS: 'HH:mm:ss',
|
||||
L: 'DD.MM.YYYY',
|
||||
LL: 'D. MMMM YYYY',
|
||||
LLL: 'D. MMMM YYYY HH:mm',
|
||||
LLLL: 'dddd, D. MMMM YYYY HH:mm',
|
||||
},
|
||||
calendar: {
|
||||
sameDay: '[heute um] LT [Uhr]',
|
||||
sameElse: 'L',
|
||||
nextDay: '[morgen um] LT [Uhr]',
|
||||
nextWeek: 'dddd [um] LT [Uhr]',
|
||||
lastDay: '[gestern um] LT [Uhr]',
|
||||
lastWeek: '[letzten] dddd [um] LT [Uhr]',
|
||||
},
|
||||
relativeTime: {
|
||||
future: 'in %s',
|
||||
past: 'vor %s',
|
||||
s: 'ein paar Sekunden',
|
||||
ss: '%d Sekunden',
|
||||
m: processRelativeTime,
|
||||
mm: '%d Minuten',
|
||||
h: processRelativeTime,
|
||||
hh: '%d Stunden',
|
||||
d: processRelativeTime,
|
||||
dd: processRelativeTime,
|
||||
M: processRelativeTime,
|
||||
MM: processRelativeTime,
|
||||
y: processRelativeTime,
|
||||
yy: processRelativeTime,
|
||||
},
|
||||
dayOfMonthOrdinalParse: /\d{1,2}\./,
|
||||
ordinal: '%d.',
|
||||
week: {
|
||||
dow: 1, // Monday is the first day of the week.
|
||||
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
||||
},
|
||||
});
|
75
node/node_modules/moment/dist/locale/de-ch.js
generated
vendored
Normal file
75
node/node_modules/moment/dist/locale/de-ch.js
generated
vendored
Normal file
|
@ -0,0 +1,75 @@
|
|||
//! moment.js locale configuration
|
||||
//! locale : German (Switzerland) [de-ch]
|
||||
//! author : sschueller : https://github.com/sschueller
|
||||
|
||||
// based on: https://www.bk.admin.ch/dokumentation/sprachen/04915/05016/index.html?lang=de#
|
||||
|
||||
import moment from '../moment';
|
||||
|
||||
function processRelativeTime(number, withoutSuffix, key, isFuture) {
|
||||
var format = {
|
||||
m: ['eine Minute', 'einer Minute'],
|
||||
h: ['eine Stunde', 'einer Stunde'],
|
||||
d: ['ein Tag', 'einem Tag'],
|
||||
dd: [number + ' Tage', number + ' Tagen'],
|
||||
M: ['ein Monat', 'einem Monat'],
|
||||
MM: [number + ' Monate', number + ' Monaten'],
|
||||
y: ['ein Jahr', 'einem Jahr'],
|
||||
yy: [number + ' Jahre', number + ' Jahren'],
|
||||
};
|
||||
return withoutSuffix ? format[key][0] : format[key][1];
|
||||
}
|
||||
|
||||
export default moment.defineLocale('de-ch', {
|
||||
months: 'Januar_Februar_März_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember'.split(
|
||||
'_'
|
||||
),
|
||||
monthsShort: 'Jan._Feb._März_Apr._Mai_Juni_Juli_Aug._Sep._Okt._Nov._Dez.'.split(
|
||||
'_'
|
||||
),
|
||||
monthsParseExact: true,
|
||||
weekdays: 'Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag'.split(
|
||||
'_'
|
||||
),
|
||||
weekdaysShort: 'So_Mo_Di_Mi_Do_Fr_Sa'.split('_'),
|
||||
weekdaysMin: 'So_Mo_Di_Mi_Do_Fr_Sa'.split('_'),
|
||||
weekdaysParseExact: true,
|
||||
longDateFormat: {
|
||||
LT: 'HH:mm',
|
||||
LTS: 'HH:mm:ss',
|
||||
L: 'DD.MM.YYYY',
|
||||
LL: 'D. MMMM YYYY',
|
||||
LLL: 'D. MMMM YYYY HH:mm',
|
||||
LLLL: 'dddd, D. MMMM YYYY HH:mm',
|
||||
},
|
||||
calendar: {
|
||||
sameDay: '[heute um] LT [Uhr]',
|
||||
sameElse: 'L',
|
||||
nextDay: '[morgen um] LT [Uhr]',
|
||||
nextWeek: 'dddd [um] LT [Uhr]',
|
||||
lastDay: '[gestern um] LT [Uhr]',
|
||||
lastWeek: '[letzten] dddd [um] LT [Uhr]',
|
||||
},
|
||||
relativeTime: {
|
||||
future: 'in %s',
|
||||
past: 'vor %s',
|
||||
s: 'ein paar Sekunden',
|
||||
ss: '%d Sekunden',
|
||||
m: processRelativeTime,
|
||||
mm: '%d Minuten',
|
||||
h: processRelativeTime,
|
||||
hh: '%d Stunden',
|
||||
d: processRelativeTime,
|
||||
dd: processRelativeTime,
|
||||
M: processRelativeTime,
|
||||
MM: processRelativeTime,
|
||||
y: processRelativeTime,
|
||||
yy: processRelativeTime,
|
||||
},
|
||||
dayOfMonthOrdinalParse: /\d{1,2}\./,
|
||||
ordinal: '%d.',
|
||||
week: {
|
||||
dow: 1, // Monday is the first day of the week.
|
||||
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
||||
},
|
||||
});
|
75
node/node_modules/moment/dist/locale/de.js
generated
vendored
Normal file
75
node/node_modules/moment/dist/locale/de.js
generated
vendored
Normal file
|
@ -0,0 +1,75 @@
|
|||
//! moment.js locale configuration
|
||||
//! locale : German [de]
|
||||
//! author : lluchs : https://github.com/lluchs
|
||||
//! author: Menelion Elensúle: https://github.com/Oire
|
||||
//! author : Mikolaj Dadela : https://github.com/mik01aj
|
||||
|
||||
import moment from '../moment';
|
||||
|
||||
function processRelativeTime(number, withoutSuffix, key, isFuture) {
|
||||
var format = {
|
||||
m: ['eine Minute', 'einer Minute'],
|
||||
h: ['eine Stunde', 'einer Stunde'],
|
||||
d: ['ein Tag', 'einem Tag'],
|
||||
dd: [number + ' Tage', number + ' Tagen'],
|
||||
M: ['ein Monat', 'einem Monat'],
|
||||
MM: [number + ' Monate', number + ' Monaten'],
|
||||
y: ['ein Jahr', 'einem Jahr'],
|
||||
yy: [number + ' Jahre', number + ' Jahren'],
|
||||
};
|
||||
return withoutSuffix ? format[key][0] : format[key][1];
|
||||
}
|
||||
|
||||
export default moment.defineLocale('de', {
|
||||
months: 'Januar_Februar_März_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember'.split(
|
||||
'_'
|
||||
),
|
||||
monthsShort: 'Jan._Feb._März_Apr._Mai_Juni_Juli_Aug._Sep._Okt._Nov._Dez.'.split(
|
||||
'_'
|
||||
),
|
||||
monthsParseExact: true,
|
||||
weekdays: 'Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag'.split(
|
||||
'_'
|
||||
),
|
||||
weekdaysShort: 'So._Mo._Di._Mi._Do._Fr._Sa.'.split('_'),
|
||||
weekdaysMin: 'So_Mo_Di_Mi_Do_Fr_Sa'.split('_'),
|
||||
weekdaysParseExact: true,
|
||||
longDateFormat: {
|
||||
LT: 'HH:mm',
|
||||
LTS: 'HH:mm:ss',
|
||||
L: 'DD.MM.YYYY',
|
||||
LL: 'D. MMMM YYYY',
|
||||
LLL: 'D. MMMM YYYY HH:mm',
|
||||
LLLL: 'dddd, D. MMMM YYYY HH:mm',
|
||||
},
|
||||
calendar: {
|
||||
sameDay: '[heute um] LT [Uhr]',
|
||||
sameElse: 'L',
|
||||
nextDay: '[morgen um] LT [Uhr]',
|
||||
nextWeek: 'dddd [um] LT [Uhr]',
|
||||
lastDay: '[gestern um] LT [Uhr]',
|
||||
lastWeek: '[letzten] dddd [um] LT [Uhr]',
|
||||
},
|
||||
relativeTime: {
|
||||
future: 'in %s',
|
||||
past: 'vor %s',
|
||||
s: 'ein paar Sekunden',
|
||||
ss: '%d Sekunden',
|
||||
m: processRelativeTime,
|
||||
mm: '%d Minuten',
|
||||
h: processRelativeTime,
|
||||
hh: '%d Stunden',
|
||||
d: processRelativeTime,
|
||||
dd: processRelativeTime,
|
||||
M: processRelativeTime,
|
||||
MM: processRelativeTime,
|
||||
y: processRelativeTime,
|
||||
yy: processRelativeTime,
|
||||
},
|
||||
dayOfMonthOrdinalParse: /\d{1,2}\./,
|
||||
ordinal: '%d.',
|
||||
week: {
|
||||
dow: 1, // Monday is the first day of the week.
|
||||
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
||||
},
|
||||
});
|
90
node/node_modules/moment/dist/locale/dv.js
generated
vendored
Normal file
90
node/node_modules/moment/dist/locale/dv.js
generated
vendored
Normal file
|
@ -0,0 +1,90 @@
|
|||
//! moment.js locale configuration
|
||||
//! locale : Maldivian [dv]
|
||||
//! author : Jawish Hameed : https://github.com/jawish
|
||||
|
||||
import moment from '../moment';
|
||||
|
||||
var months = [
|
||||
'ޖެނުއަރީ',
|
||||
'ފެބްރުއަރީ',
|
||||
'މާރިޗު',
|
||||
'އޭޕްރީލު',
|
||||
'މޭ',
|
||||
'ޖޫން',
|
||||
'ޖުލައި',
|
||||
'އޯގަސްޓު',
|
||||
'ސެޕްޓެމްބަރު',
|
||||
'އޮކްޓޯބަރު',
|
||||
'ނޮވެމްބަރު',
|
||||
'ޑިސެމްބަރު',
|
||||
],
|
||||
weekdays = [
|
||||
'އާދިއްތަ',
|
||||
'ހޯމަ',
|
||||
'އަންގާރަ',
|
||||
'ބުދަ',
|
||||
'ބުރާސްފަތި',
|
||||
'ހުކުރު',
|
||||
'ހޮނިހިރު',
|
||||
];
|
||||
|
||||
export default moment.defineLocale('dv', {
|
||||
months: months,
|
||||
monthsShort: months,
|
||||
weekdays: weekdays,
|
||||
weekdaysShort: weekdays,
|
||||
weekdaysMin: 'އާދި_ހޯމަ_އަން_ބުދަ_ބުރާ_ހުކު_ހޮނި'.split('_'),
|
||||
longDateFormat: {
|
||||
LT: 'HH:mm',
|
||||
LTS: 'HH:mm:ss',
|
||||
L: 'D/M/YYYY',
|
||||
LL: 'D MMMM YYYY',
|
||||
LLL: 'D MMMM YYYY HH:mm',
|
||||
LLLL: 'dddd D MMMM YYYY HH:mm',
|
||||
},
|
||||
meridiemParse: /މކ|މފ/,
|
||||
isPM: function (input) {
|
||||
return 'މފ' === input;
|
||||
},
|
||||
meridiem: function (hour, minute, isLower) {
|
||||
if (hour < 12) {
|
||||
return 'މކ';
|
||||
} else {
|
||||
return 'މފ';
|
||||
}
|
||||
},
|
||||
calendar: {
|
||||
sameDay: '[މިއަދު] LT',
|
||||
nextDay: '[މާދަމާ] LT',
|
||||
nextWeek: 'dddd LT',
|
||||
lastDay: '[އިއްޔެ] LT',
|
||||
lastWeek: '[ފާއިތުވި] dddd LT',
|
||||
sameElse: 'L',
|
||||
},
|
||||
relativeTime: {
|
||||
future: 'ތެރޭގައި %s',
|
||||
past: 'ކުރިން %s',
|
||||
s: 'ސިކުންތުކޮޅެއް',
|
||||
ss: 'd% ސިކުންތު',
|
||||
m: 'މިނިޓެއް',
|
||||
mm: 'މިނިޓު %d',
|
||||
h: 'ގަޑިއިރެއް',
|
||||
hh: 'ގަޑިއިރު %d',
|
||||
d: 'ދުވަހެއް',
|
||||
dd: 'ދުވަސް %d',
|
||||
M: 'މަހެއް',
|
||||
MM: 'މަސް %d',
|
||||
y: 'އަހަރެއް',
|
||||
yy: 'އަހަރު %d',
|
||||
},
|
||||
preparse: function (string) {
|
||||
return string.replace(/،/g, ',');
|
||||
},
|
||||
postformat: function (string) {
|
||||
return string.replace(/,/g, '،');
|
||||
},
|
||||
week: {
|
||||
dow: 7, // Sunday is the first day of the week.
|
||||
doy: 12, // The week that contains Jan 12th is the first week of the year.
|
||||
},
|
||||
});
|
104
node/node_modules/moment/dist/locale/el.js
generated
vendored
Normal file
104
node/node_modules/moment/dist/locale/el.js
generated
vendored
Normal file
|
@ -0,0 +1,104 @@
|
|||
//! moment.js locale configuration
|
||||
//! locale : Greek [el]
|
||||
//! author : Aggelos Karalias : https://github.com/mehiel
|
||||
|
||||
import moment from '../moment';
|
||||
|
||||
function isFunction(input) {
|
||||
return (
|
||||
(typeof Function !== 'undefined' && input instanceof Function) ||
|
||||
Object.prototype.toString.call(input) === '[object Function]'
|
||||
);
|
||||
}
|
||||
|
||||
export default moment.defineLocale('el', {
|
||||
monthsNominativeEl: 'Ιανουάριος_Φεβρουάριος_Μάρτιος_Απρίλιος_Μάιος_Ιούνιος_Ιούλιος_Αύγουστος_Σεπτέμβριος_Οκτώβριος_Νοέμβριος_Δεκέμβριος'.split(
|
||||
'_'
|
||||
),
|
||||
monthsGenitiveEl: 'Ιανουαρίου_Φεβρουαρίου_Μαρτίου_Απριλίου_Μαΐου_Ιουνίου_Ιουλίου_Αυγούστου_Σεπτεμβρίου_Οκτωβρίου_Νοεμβρίου_Δεκεμβρίου'.split(
|
||||
'_'
|
||||
),
|
||||
months: function (momentToFormat, format) {
|
||||
if (!momentToFormat) {
|
||||
return this._monthsNominativeEl;
|
||||
} else if (
|
||||
typeof format === 'string' &&
|
||||
/D/.test(format.substring(0, format.indexOf('MMMM')))
|
||||
) {
|
||||
// if there is a day number before 'MMMM'
|
||||
return this._monthsGenitiveEl[momentToFormat.month()];
|
||||
} else {
|
||||
return this._monthsNominativeEl[momentToFormat.month()];
|
||||
}
|
||||
},
|
||||
monthsShort: 'Ιαν_Φεβ_Μαρ_Απρ_Μαϊ_Ιουν_Ιουλ_Αυγ_Σεπ_Οκτ_Νοε_Δεκ'.split('_'),
|
||||
weekdays: 'Κυριακή_Δευτέρα_Τρίτη_Τετάρτη_Πέμπτη_Παρασκευή_Σάββατο'.split(
|
||||
'_'
|
||||
),
|
||||
weekdaysShort: 'Κυρ_Δευ_Τρι_Τετ_Πεμ_Παρ_Σαβ'.split('_'),
|
||||
weekdaysMin: 'Κυ_Δε_Τρ_Τε_Πε_Πα_Σα'.split('_'),
|
||||
meridiem: function (hours, minutes, isLower) {
|
||||
if (hours > 11) {
|
||||
return isLower ? 'μμ' : 'ΜΜ';
|
||||
} else {
|
||||
return isLower ? 'πμ' : 'ΠΜ';
|
||||
}
|
||||
},
|
||||
isPM: function (input) {
|
||||
return (input + '').toLowerCase()[0] === 'μ';
|
||||
},
|
||||
meridiemParse: /[ΠΜ]\.?Μ?\.?/i,
|
||||
longDateFormat: {
|
||||
LT: 'h:mm A',
|
||||
LTS: 'h:mm:ss A',
|
||||
L: 'DD/MM/YYYY',
|
||||
LL: 'D MMMM YYYY',
|
||||
LLL: 'D MMMM YYYY h:mm A',
|
||||
LLLL: 'dddd, D MMMM YYYY h:mm A',
|
||||
},
|
||||
calendarEl: {
|
||||
sameDay: '[Σήμερα {}] LT',
|
||||
nextDay: '[Αύριο {}] LT',
|
||||
nextWeek: 'dddd [{}] LT',
|
||||
lastDay: '[Χθες {}] LT',
|
||||
lastWeek: function () {
|
||||
switch (this.day()) {
|
||||
case 6:
|
||||
return '[το προηγούμενο] dddd [{}] LT';
|
||||
default:
|
||||
return '[την προηγούμενη] dddd [{}] LT';
|
||||
}
|
||||
},
|
||||
sameElse: 'L',
|
||||
},
|
||||
calendar: function (key, mom) {
|
||||
var output = this._calendarEl[key],
|
||||
hours = mom && mom.hours();
|
||||
if (isFunction(output)) {
|
||||
output = output.apply(mom);
|
||||
}
|
||||
return output.replace('{}', hours % 12 === 1 ? 'στη' : 'στις');
|
||||
},
|
||||
relativeTime: {
|
||||
future: 'σε %s',
|
||||
past: '%s πριν',
|
||||
s: 'λίγα δευτερόλεπτα',
|
||||
ss: '%d δευτερόλεπτα',
|
||||
m: 'ένα λεπτό',
|
||||
mm: '%d λεπτά',
|
||||
h: 'μία ώρα',
|
||||
hh: '%d ώρες',
|
||||
d: 'μία μέρα',
|
||||
dd: '%d μέρες',
|
||||
M: 'ένας μήνας',
|
||||
MM: '%d μήνες',
|
||||
y: 'ένας χρόνος',
|
||||
yy: '%d χρόνια',
|
||||
},
|
||||
dayOfMonthOrdinalParse: /\d{1,2}η/,
|
||||
ordinal: '%dη',
|
||||
week: {
|
||||
dow: 1, // Monday is the first day of the week.
|
||||
doy: 4, // The week that contains Jan 4st is the first week of the year.
|
||||
},
|
||||
});
|
68
node/node_modules/moment/dist/locale/en-au.js
generated
vendored
Normal file
68
node/node_modules/moment/dist/locale/en-au.js
generated
vendored
Normal file
|
@ -0,0 +1,68 @@
|
|||
//! moment.js locale configuration
|
||||
//! locale : English (Australia) [en-au]
|
||||
//! author : Jared Morse : https://github.com/jarcoal
|
||||
|
||||
import moment from '../moment';
|
||||
|
||||
export default moment.defineLocale('en-au', {
|
||||
months: 'January_February_March_April_May_June_July_August_September_October_November_December'.split(
|
||||
'_'
|
||||
),
|
||||
monthsShort: 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'),
|
||||
weekdays: 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split(
|
||||
'_'
|
||||
),
|
||||
weekdaysShort: 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'),
|
||||
weekdaysMin: 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_'),
|
||||
longDateFormat: {
|
||||
LT: 'h:mm A',
|
||||
LTS: 'h:mm:ss A',
|
||||
L: 'DD/MM/YYYY',
|
||||
LL: 'D MMMM YYYY',
|
||||
LLL: 'D MMMM YYYY h:mm A',
|
||||
LLLL: 'dddd, D MMMM YYYY h:mm A',
|
||||
},
|
||||
calendar: {
|
||||
sameDay: '[Today at] LT',
|
||||
nextDay: '[Tomorrow at] LT',
|
||||
nextWeek: 'dddd [at] LT',
|
||||
lastDay: '[Yesterday at] LT',
|
||||
lastWeek: '[Last] dddd [at] LT',
|
||||
sameElse: 'L',
|
||||
},
|
||||
relativeTime: {
|
||||
future: 'in %s',
|
||||
past: '%s ago',
|
||||
s: 'a few seconds',
|
||||
ss: '%d seconds',
|
||||
m: 'a minute',
|
||||
mm: '%d minutes',
|
||||
h: 'an hour',
|
||||
hh: '%d hours',
|
||||
d: 'a day',
|
||||
dd: '%d days',
|
||||
M: 'a month',
|
||||
MM: '%d months',
|
||||
y: 'a year',
|
||||
yy: '%d years',
|
||||
},
|
||||
dayOfMonthOrdinalParse: /\d{1,2}(st|nd|rd|th)/,
|
||||
ordinal: function (number) {
|
||||
var b = number % 10,
|
||||
output =
|
||||
~~((number % 100) / 10) === 1
|
||||
? 'th'
|
||||
: b === 1
|
||||
? 'st'
|
||||
: b === 2
|
||||
? 'nd'
|
||||
: b === 3
|
||||
? 'rd'
|
||||
: 'th';
|
||||
return number + output;
|
||||
},
|
||||
week: {
|
||||
dow: 0, // Sunday is the first day of the week.
|
||||
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
||||
},
|
||||
});
|
64
node/node_modules/moment/dist/locale/en-ca.js
generated
vendored
Normal file
64
node/node_modules/moment/dist/locale/en-ca.js
generated
vendored
Normal file
|
@ -0,0 +1,64 @@
|
|||
//! moment.js locale configuration
|
||||
//! locale : English (Canada) [en-ca]
|
||||
//! author : Jonathan Abourbih : https://github.com/jonbca
|
||||
|
||||
import moment from '../moment';
|
||||
|
||||
export default moment.defineLocale('en-ca', {
|
||||
months: 'January_February_March_April_May_June_July_August_September_October_November_December'.split(
|
||||
'_'
|
||||
),
|
||||
monthsShort: 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'),
|
||||
weekdays: 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split(
|
||||
'_'
|
||||
),
|
||||
weekdaysShort: 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'),
|
||||
weekdaysMin: 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_'),
|
||||
longDateFormat: {
|
||||
LT: 'h:mm A',
|
||||
LTS: 'h:mm:ss A',
|
||||
L: 'YYYY-MM-DD',
|
||||
LL: 'MMMM D, YYYY',
|
||||
LLL: 'MMMM D, YYYY h:mm A',
|
||||
LLLL: 'dddd, MMMM D, YYYY h:mm A',
|
||||
},
|
||||
calendar: {
|
||||
sameDay: '[Today at] LT',
|
||||
nextDay: '[Tomorrow at] LT',
|
||||
nextWeek: 'dddd [at] LT',
|
||||
lastDay: '[Yesterday at] LT',
|
||||
lastWeek: '[Last] dddd [at] LT',
|
||||
sameElse: 'L',
|
||||
},
|
||||
relativeTime: {
|
||||
future: 'in %s',
|
||||
past: '%s ago',
|
||||
s: 'a few seconds',
|
||||
ss: '%d seconds',
|
||||
m: 'a minute',
|
||||
mm: '%d minutes',
|
||||
h: 'an hour',
|
||||
hh: '%d hours',
|
||||
d: 'a day',
|
||||
dd: '%d days',
|
||||
M: 'a month',
|
||||
MM: '%d months',
|
||||
y: 'a year',
|
||||
yy: '%d years',
|
||||
},
|
||||
dayOfMonthOrdinalParse: /\d{1,2}(st|nd|rd|th)/,
|
||||
ordinal: function (number) {
|
||||
var b = number % 10,
|
||||
output =
|
||||
~~((number % 100) / 10) === 1
|
||||
? 'th'
|
||||
: b === 1
|
||||
? 'st'
|
||||
: b === 2
|
||||
? 'nd'
|
||||
: b === 3
|
||||
? 'rd'
|
||||
: 'th';
|
||||
return number + output;
|
||||
},
|
||||
});
|
68
node/node_modules/moment/dist/locale/en-gb.js
generated
vendored
Normal file
68
node/node_modules/moment/dist/locale/en-gb.js
generated
vendored
Normal file
|
@ -0,0 +1,68 @@
|
|||
//! moment.js locale configuration
|
||||
//! locale : English (United Kingdom) [en-gb]
|
||||
//! author : Chris Gedrim : https://github.com/chrisgedrim
|
||||
|
||||
import moment from '../moment';
|
||||
|
||||
export default moment.defineLocale('en-gb', {
|
||||
months: 'January_February_March_April_May_June_July_August_September_October_November_December'.split(
|
||||
'_'
|
||||
),
|
||||
monthsShort: 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'),
|
||||
weekdays: 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split(
|
||||
'_'
|
||||
),
|
||||
weekdaysShort: 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'),
|
||||
weekdaysMin: 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_'),
|
||||
longDateFormat: {
|
||||
LT: 'HH:mm',
|
||||
LTS: 'HH:mm:ss',
|
||||
L: 'DD/MM/YYYY',
|
||||
LL: 'D MMMM YYYY',
|
||||
LLL: 'D MMMM YYYY HH:mm',
|
||||
LLLL: 'dddd, D MMMM YYYY HH:mm',
|
||||
},
|
||||
calendar: {
|
||||
sameDay: '[Today at] LT',
|
||||
nextDay: '[Tomorrow at] LT',
|
||||
nextWeek: 'dddd [at] LT',
|
||||
lastDay: '[Yesterday at] LT',
|
||||
lastWeek: '[Last] dddd [at] LT',
|
||||
sameElse: 'L',
|
||||
},
|
||||
relativeTime: {
|
||||
future: 'in %s',
|
||||
past: '%s ago',
|
||||
s: 'a few seconds',
|
||||
ss: '%d seconds',
|
||||
m: 'a minute',
|
||||
mm: '%d minutes',
|
||||
h: 'an hour',
|
||||
hh: '%d hours',
|
||||
d: 'a day',
|
||||
dd: '%d days',
|
||||
M: 'a month',
|
||||
MM: '%d months',
|
||||
y: 'a year',
|
||||
yy: '%d years',
|
||||
},
|
||||
dayOfMonthOrdinalParse: /\d{1,2}(st|nd|rd|th)/,
|
||||
ordinal: function (number) {
|
||||
var b = number % 10,
|
||||
output =
|
||||
~~((number % 100) / 10) === 1
|
||||
? 'th'
|
||||
: b === 1
|
||||
? 'st'
|
||||
: b === 2
|
||||
? 'nd'
|
||||
: b === 3
|
||||
? 'rd'
|
||||
: 'th';
|
||||
return number + output;
|
||||
},
|
||||
week: {
|
||||
dow: 1, // Monday is the first day of the week.
|
||||
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
||||
},
|
||||
});
|
68
node/node_modules/moment/dist/locale/en-ie.js
generated
vendored
Normal file
68
node/node_modules/moment/dist/locale/en-ie.js
generated
vendored
Normal file
|
@ -0,0 +1,68 @@
|
|||
//! moment.js locale configuration
|
||||
//! locale : English (Ireland) [en-ie]
|
||||
//! author : Chris Cartlidge : https://github.com/chriscartlidge
|
||||
|
||||
import moment from '../moment';
|
||||
|
||||
export default moment.defineLocale('en-ie', {
|
||||
months: 'January_February_March_April_May_June_July_August_September_October_November_December'.split(
|
||||
'_'
|
||||
),
|
||||
monthsShort: 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'),
|
||||
weekdays: 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split(
|
||||
'_'
|
||||
),
|
||||
weekdaysShort: 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'),
|
||||
weekdaysMin: 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_'),
|
||||
longDateFormat: {
|
||||
LT: 'HH:mm',
|
||||
LTS: 'HH:mm:ss',
|
||||
L: 'DD/MM/YYYY',
|
||||
LL: 'D MMMM YYYY',
|
||||
LLL: 'D MMMM YYYY HH:mm',
|
||||
LLLL: 'dddd D MMMM YYYY HH:mm',
|
||||
},
|
||||
calendar: {
|
||||
sameDay: '[Today at] LT',
|
||||
nextDay: '[Tomorrow at] LT',
|
||||
nextWeek: 'dddd [at] LT',
|
||||
lastDay: '[Yesterday at] LT',
|
||||
lastWeek: '[Last] dddd [at] LT',
|
||||
sameElse: 'L',
|
||||
},
|
||||
relativeTime: {
|
||||
future: 'in %s',
|
||||
past: '%s ago',
|
||||
s: 'a few seconds',
|
||||
ss: '%d seconds',
|
||||
m: 'a minute',
|
||||
mm: '%d minutes',
|
||||
h: 'an hour',
|
||||
hh: '%d hours',
|
||||
d: 'a day',
|
||||
dd: '%d days',
|
||||
M: 'a month',
|
||||
MM: '%d months',
|
||||
y: 'a year',
|
||||
yy: '%d years',
|
||||
},
|
||||
dayOfMonthOrdinalParse: /\d{1,2}(st|nd|rd|th)/,
|
||||
ordinal: function (number) {
|
||||
var b = number % 10,
|
||||
output =
|
||||
~~((number % 100) / 10) === 1
|
||||
? 'th'
|
||||
: b === 1
|
||||
? 'st'
|
||||
: b === 2
|
||||
? 'nd'
|
||||
: b === 3
|
||||
? 'rd'
|
||||
: 'th';
|
||||
return number + output;
|
||||
},
|
||||
week: {
|
||||
dow: 1, // Monday is the first day of the week.
|
||||
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
||||
},
|
||||
});
|
64
node/node_modules/moment/dist/locale/en-il.js
generated
vendored
Normal file
64
node/node_modules/moment/dist/locale/en-il.js
generated
vendored
Normal file
|
@ -0,0 +1,64 @@
|
|||
//! moment.js locale configuration
|
||||
//! locale : English (Israel) [en-il]
|
||||
//! author : Chris Gedrim : https://github.com/chrisgedrim
|
||||
|
||||
import moment from '../moment';
|
||||
|
||||
export default moment.defineLocale('en-il', {
|
||||
months: 'January_February_March_April_May_June_July_August_September_October_November_December'.split(
|
||||
'_'
|
||||
),
|
||||
monthsShort: 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'),
|
||||
weekdays: 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split(
|
||||
'_'
|
||||
),
|
||||
weekdaysShort: 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'),
|
||||
weekdaysMin: 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_'),
|
||||
longDateFormat: {
|
||||
LT: 'HH:mm',
|
||||
LTS: 'HH:mm:ss',
|
||||
L: 'DD/MM/YYYY',
|
||||
LL: 'D MMMM YYYY',
|
||||
LLL: 'D MMMM YYYY HH:mm',
|
||||
LLLL: 'dddd, D MMMM YYYY HH:mm',
|
||||
},
|
||||
calendar: {
|
||||
sameDay: '[Today at] LT',
|
||||
nextDay: '[Tomorrow at] LT',
|
||||
nextWeek: 'dddd [at] LT',
|
||||
lastDay: '[Yesterday at] LT',
|
||||
lastWeek: '[Last] dddd [at] LT',
|
||||
sameElse: 'L',
|
||||
},
|
||||
relativeTime: {
|
||||
future: 'in %s',
|
||||
past: '%s ago',
|
||||
s: 'a few seconds',
|
||||
ss: '%d seconds',
|
||||
m: 'a minute',
|
||||
mm: '%d minutes',
|
||||
h: 'an hour',
|
||||
hh: '%d hours',
|
||||
d: 'a day',
|
||||
dd: '%d days',
|
||||
M: 'a month',
|
||||
MM: '%d months',
|
||||
y: 'a year',
|
||||
yy: '%d years',
|
||||
},
|
||||
dayOfMonthOrdinalParse: /\d{1,2}(st|nd|rd|th)/,
|
||||
ordinal: function (number) {
|
||||
var b = number % 10,
|
||||
output =
|
||||
~~((number % 100) / 10) === 1
|
||||
? 'th'
|
||||
: b === 1
|
||||
? 'st'
|
||||
: b === 2
|
||||
? 'nd'
|
||||
: b === 3
|
||||
? 'rd'
|
||||
: 'th';
|
||||
return number + output;
|
||||
},
|
||||
});
|
68
node/node_modules/moment/dist/locale/en-in.js
generated
vendored
Normal file
68
node/node_modules/moment/dist/locale/en-in.js
generated
vendored
Normal file
|
@ -0,0 +1,68 @@
|
|||
//! moment.js locale configuration
|
||||
//! locale : English (India) [en-in]
|
||||
//! author : Jatin Agrawal : https://github.com/jatinag22
|
||||
|
||||
import moment from '../moment';
|
||||
|
||||
export default moment.defineLocale('en-in', {
|
||||
months: 'January_February_March_April_May_June_July_August_September_October_November_December'.split(
|
||||
'_'
|
||||
),
|
||||
monthsShort: 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'),
|
||||
weekdays: 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split(
|
||||
'_'
|
||||
),
|
||||
weekdaysShort: 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'),
|
||||
weekdaysMin: 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_'),
|
||||
longDateFormat: {
|
||||
LT: 'h:mm A',
|
||||
LTS: 'h:mm:ss A',
|
||||
L: 'DD/MM/YYYY',
|
||||
LL: 'D MMMM YYYY',
|
||||
LLL: 'D MMMM YYYY h:mm A',
|
||||
LLLL: 'dddd, D MMMM YYYY h:mm A',
|
||||
},
|
||||
calendar: {
|
||||
sameDay: '[Today at] LT',
|
||||
nextDay: '[Tomorrow at] LT',
|
||||
nextWeek: 'dddd [at] LT',
|
||||
lastDay: '[Yesterday at] LT',
|
||||
lastWeek: '[Last] dddd [at] LT',
|
||||
sameElse: 'L',
|
||||
},
|
||||
relativeTime: {
|
||||
future: 'in %s',
|
||||
past: '%s ago',
|
||||
s: 'a few seconds',
|
||||
ss: '%d seconds',
|
||||
m: 'a minute',
|
||||
mm: '%d minutes',
|
||||
h: 'an hour',
|
||||
hh: '%d hours',
|
||||
d: 'a day',
|
||||
dd: '%d days',
|
||||
M: 'a month',
|
||||
MM: '%d months',
|
||||
y: 'a year',
|
||||
yy: '%d years',
|
||||
},
|
||||
dayOfMonthOrdinalParse: /\d{1,2}(st|nd|rd|th)/,
|
||||
ordinal: function (number) {
|
||||
var b = number % 10,
|
||||
output =
|
||||
~~((number % 100) / 10) === 1
|
||||
? 'th'
|
||||
: b === 1
|
||||
? 'st'
|
||||
: b === 2
|
||||
? 'nd'
|
||||
: b === 3
|
||||
? 'rd'
|
||||
: 'th';
|
||||
return number + output;
|
||||
},
|
||||
week: {
|
||||
dow: 0, // Sunday is the first day of the week.
|
||||
doy: 6, // The week that contains Jan 1st is the first week of the year.
|
||||
},
|
||||
});
|
68
node/node_modules/moment/dist/locale/en-nz.js
generated
vendored
Normal file
68
node/node_modules/moment/dist/locale/en-nz.js
generated
vendored
Normal file
|
@ -0,0 +1,68 @@
|
|||
//! moment.js locale configuration
|
||||
//! locale : English (New Zealand) [en-nz]
|
||||
//! author : Luke McGregor : https://github.com/lukemcgregor
|
||||
|
||||
import moment from '../moment';
|
||||
|
||||
export default moment.defineLocale('en-nz', {
|
||||
months: 'January_February_March_April_May_June_July_August_September_October_November_December'.split(
|
||||
'_'
|
||||
),
|
||||
monthsShort: 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'),
|
||||
weekdays: 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split(
|
||||
'_'
|
||||
),
|
||||
weekdaysShort: 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'),
|
||||
weekdaysMin: 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_'),
|
||||
longDateFormat: {
|
||||
LT: 'h:mm A',
|
||||
LTS: 'h:mm:ss A',
|
||||
L: 'DD/MM/YYYY',
|
||||
LL: 'D MMMM YYYY',
|
||||
LLL: 'D MMMM YYYY h:mm A',
|
||||
LLLL: 'dddd, D MMMM YYYY h:mm A',
|
||||
},
|
||||
calendar: {
|
||||
sameDay: '[Today at] LT',
|
||||
nextDay: '[Tomorrow at] LT',
|
||||
nextWeek: 'dddd [at] LT',
|
||||
lastDay: '[Yesterday at] LT',
|
||||
lastWeek: '[Last] dddd [at] LT',
|
||||
sameElse: 'L',
|
||||
},
|
||||
relativeTime: {
|
||||
future: 'in %s',
|
||||
past: '%s ago',
|
||||
s: 'a few seconds',
|
||||
ss: '%d seconds',
|
||||
m: 'a minute',
|
||||
mm: '%d minutes',
|
||||
h: 'an hour',
|
||||
hh: '%d hours',
|
||||
d: 'a day',
|
||||
dd: '%d days',
|
||||
M: 'a month',
|
||||
MM: '%d months',
|
||||
y: 'a year',
|
||||
yy: '%d years',
|
||||
},
|
||||
dayOfMonthOrdinalParse: /\d{1,2}(st|nd|rd|th)/,
|
||||
ordinal: function (number) {
|
||||
var b = number % 10,
|
||||
output =
|
||||
~~((number % 100) / 10) === 1
|
||||
? 'th'
|
||||
: b === 1
|
||||
? 'st'
|
||||
: b === 2
|
||||
? 'nd'
|
||||
: b === 3
|
||||
? 'rd'
|
||||
: 'th';
|
||||
return number + output;
|
||||
},
|
||||
week: {
|
||||
dow: 1, // Monday is the first day of the week.
|
||||
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
||||
},
|
||||
});
|
68
node/node_modules/moment/dist/locale/en-sg.js
generated
vendored
Normal file
68
node/node_modules/moment/dist/locale/en-sg.js
generated
vendored
Normal file
|
@ -0,0 +1,68 @@
|
|||
//! moment.js locale configuration
|
||||
//! locale : English (Singapore) [en-sg]
|
||||
//! author : Matthew Castrillon-Madrigal : https://github.com/techdimension
|
||||
|
||||
import moment from '../moment';
|
||||
|
||||
export default moment.defineLocale('en-sg', {
|
||||
months: 'January_February_March_April_May_June_July_August_September_October_November_December'.split(
|
||||
'_'
|
||||
),
|
||||
monthsShort: 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'),
|
||||
weekdays: 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split(
|
||||
'_'
|
||||
),
|
||||
weekdaysShort: 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'),
|
||||
weekdaysMin: 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_'),
|
||||
longDateFormat: {
|
||||
LT: 'HH:mm',
|
||||
LTS: 'HH:mm:ss',
|
||||
L: 'DD/MM/YYYY',
|
||||
LL: 'D MMMM YYYY',
|
||||
LLL: 'D MMMM YYYY HH:mm',
|
||||
LLLL: 'dddd, D MMMM YYYY HH:mm',
|
||||
},
|
||||
calendar: {
|
||||
sameDay: '[Today at] LT',
|
||||
nextDay: '[Tomorrow at] LT',
|
||||
nextWeek: 'dddd [at] LT',
|
||||
lastDay: '[Yesterday at] LT',
|
||||
lastWeek: '[Last] dddd [at] LT',
|
||||
sameElse: 'L',
|
||||
},
|
||||
relativeTime: {
|
||||
future: 'in %s',
|
||||
past: '%s ago',
|
||||
s: 'a few seconds',
|
||||
ss: '%d seconds',
|
||||
m: 'a minute',
|
||||
mm: '%d minutes',
|
||||
h: 'an hour',
|
||||
hh: '%d hours',
|
||||
d: 'a day',
|
||||
dd: '%d days',
|
||||
M: 'a month',
|
||||
MM: '%d months',
|
||||
y: 'a year',
|
||||
yy: '%d years',
|
||||
},
|
||||
dayOfMonthOrdinalParse: /\d{1,2}(st|nd|rd|th)/,
|
||||
ordinal: function (number) {
|
||||
var b = number % 10,
|
||||
output =
|
||||
~~((number % 100) / 10) === 1
|
||||
? 'th'
|
||||
: b === 1
|
||||
? 'st'
|
||||
: b === 2
|
||||
? 'nd'
|
||||
: b === 3
|
||||
? 'rd'
|
||||
: 'th';
|
||||
return number + output;
|
||||
},
|
||||
week: {
|
||||
dow: 1, // Monday is the first day of the week.
|
||||
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
||||
},
|
||||
});
|
68
node/node_modules/moment/dist/locale/eo.js
generated
vendored
Normal file
68
node/node_modules/moment/dist/locale/eo.js
generated
vendored
Normal file
|
@ -0,0 +1,68 @@
|
|||
//! moment.js locale configuration
|
||||
//! locale : Esperanto [eo]
|
||||
//! author : Colin Dean : https://github.com/colindean
|
||||
//! author : Mia Nordentoft Imperatori : https://github.com/miestasmia
|
||||
//! comment : miestasmia corrected the translation by colindean
|
||||
//! comment : Vivakvo corrected the translation by colindean and miestasmia
|
||||
|
||||
import moment from '../moment';
|
||||
|
||||
export default moment.defineLocale('eo', {
|
||||
months: 'januaro_februaro_marto_aprilo_majo_junio_julio_aŭgusto_septembro_oktobro_novembro_decembro'.split(
|
||||
'_'
|
||||
),
|
||||
monthsShort: 'jan_feb_mart_apr_maj_jun_jul_aŭg_sept_okt_nov_dec'.split('_'),
|
||||
weekdays: 'dimanĉo_lundo_mardo_merkredo_ĵaŭdo_vendredo_sabato'.split('_'),
|
||||
weekdaysShort: 'dim_lun_mard_merk_ĵaŭ_ven_sab'.split('_'),
|
||||
weekdaysMin: 'di_lu_ma_me_ĵa_ve_sa'.split('_'),
|
||||
longDateFormat: {
|
||||
LT: 'HH:mm',
|
||||
LTS: 'HH:mm:ss',
|
||||
L: 'YYYY-MM-DD',
|
||||
LL: '[la] D[-an de] MMMM, YYYY',
|
||||
LLL: '[la] D[-an de] MMMM, YYYY HH:mm',
|
||||
LLLL: 'dddd[n], [la] D[-an de] MMMM, YYYY HH:mm',
|
||||
llll: 'ddd, [la] D[-an de] MMM, YYYY HH:mm',
|
||||
},
|
||||
meridiemParse: /[ap]\.t\.m/i,
|
||||
isPM: function (input) {
|
||||
return input.charAt(0).toLowerCase() === 'p';
|
||||
},
|
||||
meridiem: function (hours, minutes, isLower) {
|
||||
if (hours > 11) {
|
||||
return isLower ? 'p.t.m.' : 'P.T.M.';
|
||||
} else {
|
||||
return isLower ? 'a.t.m.' : 'A.T.M.';
|
||||
}
|
||||
},
|
||||
calendar: {
|
||||
sameDay: '[Hodiaŭ je] LT',
|
||||
nextDay: '[Morgaŭ je] LT',
|
||||
nextWeek: 'dddd[n je] LT',
|
||||
lastDay: '[Hieraŭ je] LT',
|
||||
lastWeek: '[pasintan] dddd[n je] LT',
|
||||
sameElse: 'L',
|
||||
},
|
||||
relativeTime: {
|
||||
future: 'post %s',
|
||||
past: 'antaŭ %s',
|
||||
s: 'kelkaj sekundoj',
|
||||
ss: '%d sekundoj',
|
||||
m: 'unu minuto',
|
||||
mm: '%d minutoj',
|
||||
h: 'unu horo',
|
||||
hh: '%d horoj',
|
||||
d: 'unu tago', //ne 'diurno', ĉar estas uzita por proksimumo
|
||||
dd: '%d tagoj',
|
||||
M: 'unu monato',
|
||||
MM: '%d monatoj',
|
||||
y: 'unu jaro',
|
||||
yy: '%d jaroj',
|
||||
},
|
||||
dayOfMonthOrdinalParse: /\d{1,2}a/,
|
||||
ordinal: '%da',
|
||||
week: {
|
||||
dow: 1, // Monday is the first day of the week.
|
||||
doy: 7, // The week that contains Jan 7th is the first week of the year.
|
||||
},
|
||||
});
|
102
node/node_modules/moment/dist/locale/es-do.js
generated
vendored
Normal file
102
node/node_modules/moment/dist/locale/es-do.js
generated
vendored
Normal file
|
@ -0,0 +1,102 @@
|
|||
//! moment.js locale configuration
|
||||
//! locale : Spanish (Dominican Republic) [es-do]
|
||||
|
||||
import moment from '../moment';
|
||||
|
||||
var monthsShortDot = 'ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.'.split(
|
||||
'_'
|
||||
),
|
||||
monthsShort = 'ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic'.split('_'),
|
||||
monthsParse = [
|
||||
/^ene/i,
|
||||
/^feb/i,
|
||||
/^mar/i,
|
||||
/^abr/i,
|
||||
/^may/i,
|
||||
/^jun/i,
|
||||
/^jul/i,
|
||||
/^ago/i,
|
||||
/^sep/i,
|
||||
/^oct/i,
|
||||
/^nov/i,
|
||||
/^dic/i,
|
||||
],
|
||||
monthsRegex = /^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre|ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i;
|
||||
|
||||
export default moment.defineLocale('es-do', {
|
||||
months: 'enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre'.split(
|
||||
'_'
|
||||
),
|
||||
monthsShort: function (m, format) {
|
||||
if (!m) {
|
||||
return monthsShortDot;
|
||||
} else if (/-MMM-/.test(format)) {
|
||||
return monthsShort[m.month()];
|
||||
} else {
|
||||
return monthsShortDot[m.month()];
|
||||
}
|
||||
},
|
||||
monthsRegex: monthsRegex,
|
||||
monthsShortRegex: monthsRegex,
|
||||
monthsStrictRegex: /^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,
|
||||
monthsShortStrictRegex: /^(ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i,
|
||||
monthsParse: monthsParse,
|
||||
longMonthsParse: monthsParse,
|
||||
shortMonthsParse: monthsParse,
|
||||
weekdays: 'domingo_lunes_martes_miércoles_jueves_viernes_sábado'.split('_'),
|
||||
weekdaysShort: 'dom._lun._mar._mié._jue._vie._sáb.'.split('_'),
|
||||
weekdaysMin: 'do_lu_ma_mi_ju_vi_sá'.split('_'),
|
||||
weekdaysParseExact: true,
|
||||
longDateFormat: {
|
||||
LT: 'h:mm A',
|
||||
LTS: 'h:mm:ss A',
|
||||
L: 'DD/MM/YYYY',
|
||||
LL: 'D [de] MMMM [de] YYYY',
|
||||
LLL: 'D [de] MMMM [de] YYYY h:mm A',
|
||||
LLLL: 'dddd, D [de] MMMM [de] YYYY h:mm A',
|
||||
},
|
||||
calendar: {
|
||||
sameDay: function () {
|
||||
return '[hoy a la' + (this.hours() !== 1 ? 's' : '') + '] LT';
|
||||
},
|
||||
nextDay: function () {
|
||||
return '[mañana a la' + (this.hours() !== 1 ? 's' : '') + '] LT';
|
||||
},
|
||||
nextWeek: function () {
|
||||
return 'dddd [a la' + (this.hours() !== 1 ? 's' : '') + '] LT';
|
||||
},
|
||||
lastDay: function () {
|
||||
return '[ayer a la' + (this.hours() !== 1 ? 's' : '') + '] LT';
|
||||
},
|
||||
lastWeek: function () {
|
||||
return (
|
||||
'[el] dddd [pasado a la' +
|
||||
(this.hours() !== 1 ? 's' : '') +
|
||||
'] LT'
|
||||
);
|
||||
},
|
||||
sameElse: 'L',
|
||||
},
|
||||
relativeTime: {
|
||||
future: 'en %s',
|
||||
past: 'hace %s',
|
||||
s: 'unos segundos',
|
||||
ss: '%d segundos',
|
||||
m: 'un minuto',
|
||||
mm: '%d minutos',
|
||||
h: 'una hora',
|
||||
hh: '%d horas',
|
||||
d: 'un día',
|
||||
dd: '%d días',
|
||||
M: 'un mes',
|
||||
MM: '%d meses',
|
||||
y: 'un año',
|
||||
yy: '%d años',
|
||||
},
|
||||
dayOfMonthOrdinalParse: /\d{1,2}º/,
|
||||
ordinal: '%dº',
|
||||
week: {
|
||||
dow: 1, // Monday is the first day of the week.
|
||||
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
||||
},
|
||||
});
|
104
node/node_modules/moment/dist/locale/es-us.js
generated
vendored
Normal file
104
node/node_modules/moment/dist/locale/es-us.js
generated
vendored
Normal file
|
@ -0,0 +1,104 @@
|
|||
//! moment.js locale configuration
|
||||
//! locale : Spanish (United States) [es-us]
|
||||
//! author : bustta : https://github.com/bustta
|
||||
//! author : chrisrodz : https://github.com/chrisrodz
|
||||
|
||||
import moment from '../moment';
|
||||
|
||||
var monthsShortDot = 'ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.'.split(
|
||||
'_'
|
||||
),
|
||||
monthsShort = 'ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic'.split('_'),
|
||||
monthsParse = [
|
||||
/^ene/i,
|
||||
/^feb/i,
|
||||
/^mar/i,
|
||||
/^abr/i,
|
||||
/^may/i,
|
||||
/^jun/i,
|
||||
/^jul/i,
|
||||
/^ago/i,
|
||||
/^sep/i,
|
||||
/^oct/i,
|
||||
/^nov/i,
|
||||
/^dic/i,
|
||||
],
|
||||
monthsRegex = /^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre|ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i;
|
||||
|
||||
export default moment.defineLocale('es-us', {
|
||||
months: 'enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre'.split(
|
||||
'_'
|
||||
),
|
||||
monthsShort: function (m, format) {
|
||||
if (!m) {
|
||||
return monthsShortDot;
|
||||
} else if (/-MMM-/.test(format)) {
|
||||
return monthsShort[m.month()];
|
||||
} else {
|
||||
return monthsShortDot[m.month()];
|
||||
}
|
||||
},
|
||||
monthsRegex: monthsRegex,
|
||||
monthsShortRegex: monthsRegex,
|
||||
monthsStrictRegex: /^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,
|
||||
monthsShortStrictRegex: /^(ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i,
|
||||
monthsParse: monthsParse,
|
||||
longMonthsParse: monthsParse,
|
||||
shortMonthsParse: monthsParse,
|
||||
weekdays: 'domingo_lunes_martes_miércoles_jueves_viernes_sábado'.split('_'),
|
||||
weekdaysShort: 'dom._lun._mar._mié._jue._vie._sáb.'.split('_'),
|
||||
weekdaysMin: 'do_lu_ma_mi_ju_vi_sá'.split('_'),
|
||||
weekdaysParseExact: true,
|
||||
longDateFormat: {
|
||||
LT: 'h:mm A',
|
||||
LTS: 'h:mm:ss A',
|
||||
L: 'MM/DD/YYYY',
|
||||
LL: 'D [de] MMMM [de] YYYY',
|
||||
LLL: 'D [de] MMMM [de] YYYY h:mm A',
|
||||
LLLL: 'dddd, D [de] MMMM [de] YYYY h:mm A',
|
||||
},
|
||||
calendar: {
|
||||
sameDay: function () {
|
||||
return '[hoy a la' + (this.hours() !== 1 ? 's' : '') + '] LT';
|
||||
},
|
||||
nextDay: function () {
|
||||
return '[mañana a la' + (this.hours() !== 1 ? 's' : '') + '] LT';
|
||||
},
|
||||
nextWeek: function () {
|
||||
return 'dddd [a la' + (this.hours() !== 1 ? 's' : '') + '] LT';
|
||||
},
|
||||
lastDay: function () {
|
||||
return '[ayer a la' + (this.hours() !== 1 ? 's' : '') + '] LT';
|
||||
},
|
||||
lastWeek: function () {
|
||||
return (
|
||||
'[el] dddd [pasado a la' +
|
||||
(this.hours() !== 1 ? 's' : '') +
|
||||
'] LT'
|
||||
);
|
||||
},
|
||||
sameElse: 'L',
|
||||
},
|
||||
relativeTime: {
|
||||
future: 'en %s',
|
||||
past: 'hace %s',
|
||||
s: 'unos segundos',
|
||||
ss: '%d segundos',
|
||||
m: 'un minuto',
|
||||
mm: '%d minutos',
|
||||
h: 'una hora',
|
||||
hh: '%d horas',
|
||||
d: 'un día',
|
||||
dd: '%d días',
|
||||
M: 'un mes',
|
||||
MM: '%d meses',
|
||||
y: 'un año',
|
||||
yy: '%d años',
|
||||
},
|
||||
dayOfMonthOrdinalParse: /\d{1,2}º/,
|
||||
ordinal: '%dº',
|
||||
week: {
|
||||
dow: 0, // Sunday is the first day of the week.
|
||||
doy: 6, // The week that contains Jan 6th is the first week of the year.
|
||||
},
|
||||
});
|
104
node/node_modules/moment/dist/locale/es.js
generated
vendored
Normal file
104
node/node_modules/moment/dist/locale/es.js
generated
vendored
Normal file
|
@ -0,0 +1,104 @@
|
|||
//! moment.js locale configuration
|
||||
//! locale : Spanish [es]
|
||||
//! author : Julio Napurí : https://github.com/julionc
|
||||
|
||||
import moment from '../moment';
|
||||
|
||||
var monthsShortDot = 'ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.'.split(
|
||||
'_'
|
||||
),
|
||||
monthsShort = 'ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic'.split('_'),
|
||||
monthsParse = [
|
||||
/^ene/i,
|
||||
/^feb/i,
|
||||
/^mar/i,
|
||||
/^abr/i,
|
||||
/^may/i,
|
||||
/^jun/i,
|
||||
/^jul/i,
|
||||
/^ago/i,
|
||||
/^sep/i,
|
||||
/^oct/i,
|
||||
/^nov/i,
|
||||
/^dic/i,
|
||||
],
|
||||
monthsRegex = /^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre|ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i;
|
||||
|
||||
export default moment.defineLocale('es', {
|
||||
months: 'enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre'.split(
|
||||
'_'
|
||||
),
|
||||
monthsShort: function (m, format) {
|
||||
if (!m) {
|
||||
return monthsShortDot;
|
||||
} else if (/-MMM-/.test(format)) {
|
||||
return monthsShort[m.month()];
|
||||
} else {
|
||||
return monthsShortDot[m.month()];
|
||||
}
|
||||
},
|
||||
monthsRegex: monthsRegex,
|
||||
monthsShortRegex: monthsRegex,
|
||||
monthsStrictRegex: /^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,
|
||||
monthsShortStrictRegex: /^(ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i,
|
||||
monthsParse: monthsParse,
|
||||
longMonthsParse: monthsParse,
|
||||
shortMonthsParse: monthsParse,
|
||||
weekdays: 'domingo_lunes_martes_miércoles_jueves_viernes_sábado'.split('_'),
|
||||
weekdaysShort: 'dom._lun._mar._mié._jue._vie._sáb.'.split('_'),
|
||||
weekdaysMin: 'do_lu_ma_mi_ju_vi_sá'.split('_'),
|
||||
weekdaysParseExact: true,
|
||||
longDateFormat: {
|
||||
LT: 'H:mm',
|
||||
LTS: 'H:mm:ss',
|
||||
L: 'DD/MM/YYYY',
|
||||
LL: 'D [de] MMMM [de] YYYY',
|
||||
LLL: 'D [de] MMMM [de] YYYY H:mm',
|
||||
LLLL: 'dddd, D [de] MMMM [de] YYYY H:mm',
|
||||
},
|
||||
calendar: {
|
||||
sameDay: function () {
|
||||
return '[hoy a la' + (this.hours() !== 1 ? 's' : '') + '] LT';
|
||||
},
|
||||
nextDay: function () {
|
||||
return '[mañana a la' + (this.hours() !== 1 ? 's' : '') + '] LT';
|
||||
},
|
||||
nextWeek: function () {
|
||||
return 'dddd [a la' + (this.hours() !== 1 ? 's' : '') + '] LT';
|
||||
},
|
||||
lastDay: function () {
|
||||
return '[ayer a la' + (this.hours() !== 1 ? 's' : '') + '] LT';
|
||||
},
|
||||
lastWeek: function () {
|
||||
return (
|
||||
'[el] dddd [pasado a la' +
|
||||
(this.hours() !== 1 ? 's' : '') +
|
||||
'] LT'
|
||||
);
|
||||
},
|
||||
sameElse: 'L',
|
||||
},
|
||||
relativeTime: {
|
||||
future: 'en %s',
|
||||
past: 'hace %s',
|
||||
s: 'unos segundos',
|
||||
ss: '%d segundos',
|
||||
m: 'un minuto',
|
||||
mm: '%d minutos',
|
||||
h: 'una hora',
|
||||
hh: '%d horas',
|
||||
d: 'un día',
|
||||
dd: '%d días',
|
||||
M: 'un mes',
|
||||
MM: '%d meses',
|
||||
y: 'un año',
|
||||
yy: '%d años',
|
||||
},
|
||||
dayOfMonthOrdinalParse: /\d{1,2}º/,
|
||||
ordinal: '%dº',
|
||||
week: {
|
||||
dow: 1, // Monday is the first day of the week.
|
||||
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
||||
},
|
||||
invalidDate: 'Fecha invalida',
|
||||
});
|
78
node/node_modules/moment/dist/locale/et.js
generated
vendored
Normal file
78
node/node_modules/moment/dist/locale/et.js
generated
vendored
Normal file
|
@ -0,0 +1,78 @@
|
|||
//! moment.js locale configuration
|
||||
//! locale : Estonian [et]
|
||||
//! author : Henry Kehlmann : https://github.com/madhenry
|
||||
//! improvements : Illimar Tambek : https://github.com/ragulka
|
||||
|
||||
import moment from '../moment';
|
||||
|
||||
function processRelativeTime(number, withoutSuffix, key, isFuture) {
|
||||
var format = {
|
||||
s: ['mõne sekundi', 'mõni sekund', 'paar sekundit'],
|
||||
ss: [number + 'sekundi', number + 'sekundit'],
|
||||
m: ['ühe minuti', 'üks minut'],
|
||||
mm: [number + ' minuti', number + ' minutit'],
|
||||
h: ['ühe tunni', 'tund aega', 'üks tund'],
|
||||
hh: [number + ' tunni', number + ' tundi'],
|
||||
d: ['ühe päeva', 'üks päev'],
|
||||
M: ['kuu aja', 'kuu aega', 'üks kuu'],
|
||||
MM: [number + ' kuu', number + ' kuud'],
|
||||
y: ['ühe aasta', 'aasta', 'üks aasta'],
|
||||
yy: [number + ' aasta', number + ' aastat'],
|
||||
};
|
||||
if (withoutSuffix) {
|
||||
return format[key][2] ? format[key][2] : format[key][1];
|
||||
}
|
||||
return isFuture ? format[key][0] : format[key][1];
|
||||
}
|
||||
|
||||
export default moment.defineLocale('et', {
|
||||
months: 'jaanuar_veebruar_märts_aprill_mai_juuni_juuli_august_september_oktoober_november_detsember'.split(
|
||||
'_'
|
||||
),
|
||||
monthsShort: 'jaan_veebr_märts_apr_mai_juuni_juuli_aug_sept_okt_nov_dets'.split(
|
||||
'_'
|
||||
),
|
||||
weekdays: 'pühapäev_esmaspäev_teisipäev_kolmapäev_neljapäev_reede_laupäev'.split(
|
||||
'_'
|
||||
),
|
||||
weekdaysShort: 'P_E_T_K_N_R_L'.split('_'),
|
||||
weekdaysMin: 'P_E_T_K_N_R_L'.split('_'),
|
||||
longDateFormat: {
|
||||
LT: 'H:mm',
|
||||
LTS: 'H:mm:ss',
|
||||
L: 'DD.MM.YYYY',
|
||||
LL: 'D. MMMM YYYY',
|
||||
LLL: 'D. MMMM YYYY H:mm',
|
||||
LLLL: 'dddd, D. MMMM YYYY H:mm',
|
||||
},
|
||||
calendar: {
|
||||
sameDay: '[Täna,] LT',
|
||||
nextDay: '[Homme,] LT',
|
||||
nextWeek: '[Järgmine] dddd LT',
|
||||
lastDay: '[Eile,] LT',
|
||||
lastWeek: '[Eelmine] dddd LT',
|
||||
sameElse: 'L',
|
||||
},
|
||||
relativeTime: {
|
||||
future: '%s pärast',
|
||||
past: '%s tagasi',
|
||||
s: processRelativeTime,
|
||||
ss: processRelativeTime,
|
||||
m: processRelativeTime,
|
||||
mm: processRelativeTime,
|
||||
h: processRelativeTime,
|
||||
hh: processRelativeTime,
|
||||
d: processRelativeTime,
|
||||
dd: '%d päeva',
|
||||
M: processRelativeTime,
|
||||
MM: processRelativeTime,
|
||||
y: processRelativeTime,
|
||||
yy: processRelativeTime,
|
||||
},
|
||||
dayOfMonthOrdinalParse: /\d{1,2}\./,
|
||||
ordinal: '%d.',
|
||||
week: {
|
||||
dow: 1, // Monday is the first day of the week.
|
||||
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
||||
},
|
||||
});
|
63
node/node_modules/moment/dist/locale/eu.js
generated
vendored
Normal file
63
node/node_modules/moment/dist/locale/eu.js
generated
vendored
Normal file
|
@ -0,0 +1,63 @@
|
|||
//! moment.js locale configuration
|
||||
//! locale : Basque [eu]
|
||||
//! author : Eneko Illarramendi : https://github.com/eillarra
|
||||
|
||||
import moment from '../moment';
|
||||
|
||||
export default moment.defineLocale('eu', {
|
||||
months: 'urtarrila_otsaila_martxoa_apirila_maiatza_ekaina_uztaila_abuztua_iraila_urria_azaroa_abendua'.split(
|
||||
'_'
|
||||
),
|
||||
monthsShort: 'urt._ots._mar._api._mai._eka._uzt._abu._ira._urr._aza._abe.'.split(
|
||||
'_'
|
||||
),
|
||||
monthsParseExact: true,
|
||||
weekdays: 'igandea_astelehena_asteartea_asteazkena_osteguna_ostirala_larunbata'.split(
|
||||
'_'
|
||||
),
|
||||
weekdaysShort: 'ig._al._ar._az._og._ol._lr.'.split('_'),
|
||||
weekdaysMin: 'ig_al_ar_az_og_ol_lr'.split('_'),
|
||||
weekdaysParseExact: true,
|
||||
longDateFormat: {
|
||||
LT: 'HH:mm',
|
||||
LTS: 'HH:mm:ss',
|
||||
L: 'YYYY-MM-DD',
|
||||
LL: 'YYYY[ko] MMMM[ren] D[a]',
|
||||
LLL: 'YYYY[ko] MMMM[ren] D[a] HH:mm',
|
||||
LLLL: 'dddd, YYYY[ko] MMMM[ren] D[a] HH:mm',
|
||||
l: 'YYYY-M-D',
|
||||
ll: 'YYYY[ko] MMM D[a]',
|
||||
lll: 'YYYY[ko] MMM D[a] HH:mm',
|
||||
llll: 'ddd, YYYY[ko] MMM D[a] HH:mm',
|
||||
},
|
||||
calendar: {
|
||||
sameDay: '[gaur] LT[etan]',
|
||||
nextDay: '[bihar] LT[etan]',
|
||||
nextWeek: 'dddd LT[etan]',
|
||||
lastDay: '[atzo] LT[etan]',
|
||||
lastWeek: '[aurreko] dddd LT[etan]',
|
||||
sameElse: 'L',
|
||||
},
|
||||
relativeTime: {
|
||||
future: '%s barru',
|
||||
past: 'duela %s',
|
||||
s: 'segundo batzuk',
|
||||
ss: '%d segundo',
|
||||
m: 'minutu bat',
|
||||
mm: '%d minutu',
|
||||
h: 'ordu bat',
|
||||
hh: '%d ordu',
|
||||
d: 'egun bat',
|
||||
dd: '%d egun',
|
||||
M: 'hilabete bat',
|
||||
MM: '%d hilabete',
|
||||
y: 'urte bat',
|
||||
yy: '%d urte',
|
||||
},
|
||||
dayOfMonthOrdinalParse: /\d{1,2}\./,
|
||||
ordinal: '%d.',
|
||||
week: {
|
||||
dow: 1, // Monday is the first day of the week.
|
||||
doy: 7, // The week that contains Jan 7th is the first week of the year.
|
||||
},
|
||||
});
|
110
node/node_modules/moment/dist/locale/fa.js
generated
vendored
Normal file
110
node/node_modules/moment/dist/locale/fa.js
generated
vendored
Normal file
|
@ -0,0 +1,110 @@
|
|||
//! moment.js locale configuration
|
||||
//! locale : Persian [fa]
|
||||
//! author : Ebrahim Byagowi : https://github.com/ebraminio
|
||||
|
||||
import moment from '../moment';
|
||||
|
||||
var symbolMap = {
|
||||
'1': '۱',
|
||||
'2': '۲',
|
||||
'3': '۳',
|
||||
'4': '۴',
|
||||
'5': '۵',
|
||||
'6': '۶',
|
||||
'7': '۷',
|
||||
'8': '۸',
|
||||
'9': '۹',
|
||||
'0': '۰',
|
||||
},
|
||||
numberMap = {
|
||||
'۱': '1',
|
||||
'۲': '2',
|
||||
'۳': '3',
|
||||
'۴': '4',
|
||||
'۵': '5',
|
||||
'۶': '6',
|
||||
'۷': '7',
|
||||
'۸': '8',
|
||||
'۹': '9',
|
||||
'۰': '0',
|
||||
};
|
||||
|
||||
export default moment.defineLocale('fa', {
|
||||
months: 'ژانویه_فوریه_مارس_آوریل_مه_ژوئن_ژوئیه_اوت_سپتامبر_اکتبر_نوامبر_دسامبر'.split(
|
||||
'_'
|
||||
),
|
||||
monthsShort: 'ژانویه_فوریه_مارس_آوریل_مه_ژوئن_ژوئیه_اوت_سپتامبر_اکتبر_نوامبر_دسامبر'.split(
|
||||
'_'
|
||||
),
|
||||
weekdays: 'یک\u200cشنبه_دوشنبه_سه\u200cشنبه_چهارشنبه_پنج\u200cشنبه_جمعه_شنبه'.split(
|
||||
'_'
|
||||
),
|
||||
weekdaysShort: 'یک\u200cشنبه_دوشنبه_سه\u200cشنبه_چهارشنبه_پنج\u200cشنبه_جمعه_شنبه'.split(
|
||||
'_'
|
||||
),
|
||||
weekdaysMin: 'ی_د_س_چ_پ_ج_ش'.split('_'),
|
||||
weekdaysParseExact: true,
|
||||
longDateFormat: {
|
||||
LT: 'HH:mm',
|
||||
LTS: 'HH:mm:ss',
|
||||
L: 'DD/MM/YYYY',
|
||||
LL: 'D MMMM YYYY',
|
||||
LLL: 'D MMMM YYYY HH:mm',
|
||||
LLLL: 'dddd, D MMMM YYYY HH:mm',
|
||||
},
|
||||
meridiemParse: /قبل از ظهر|بعد از ظهر/,
|
||||
isPM: function (input) {
|
||||
return /بعد از ظهر/.test(input);
|
||||
},
|
||||
meridiem: function (hour, minute, isLower) {
|
||||
if (hour < 12) {
|
||||
return 'قبل از ظهر';
|
||||
} else {
|
||||
return 'بعد از ظهر';
|
||||
}
|
||||
},
|
||||
calendar: {
|
||||
sameDay: '[امروز ساعت] LT',
|
||||
nextDay: '[فردا ساعت] LT',
|
||||
nextWeek: 'dddd [ساعت] LT',
|
||||
lastDay: '[دیروز ساعت] LT',
|
||||
lastWeek: 'dddd [پیش] [ساعت] LT',
|
||||
sameElse: 'L',
|
||||
},
|
||||
relativeTime: {
|
||||
future: 'در %s',
|
||||
past: '%s پیش',
|
||||
s: 'چند ثانیه',
|
||||
ss: '%d ثانیه',
|
||||
m: 'یک دقیقه',
|
||||
mm: '%d دقیقه',
|
||||
h: 'یک ساعت',
|
||||
hh: '%d ساعت',
|
||||
d: 'یک روز',
|
||||
dd: '%d روز',
|
||||
M: 'یک ماه',
|
||||
MM: '%d ماه',
|
||||
y: 'یک سال',
|
||||
yy: '%d سال',
|
||||
},
|
||||
preparse: function (string) {
|
||||
return string
|
||||
.replace(/[۰-۹]/g, function (match) {
|
||||
return numberMap[match];
|
||||
})
|
||||
.replace(/،/g, ',');
|
||||
},
|
||||
postformat: function (string) {
|
||||
return string
|
||||
.replace(/\d/g, function (match) {
|
||||
return symbolMap[match];
|
||||
})
|
||||
.replace(/,/g, '،');
|
||||
},
|
||||
dayOfMonthOrdinalParse: /\d{1,2}م/,
|
||||
ordinal: '%dم',
|
||||
week: {
|
||||
dow: 6, // Saturday is the first day of the week.
|
||||
doy: 12, // The week that contains Jan 12th is the first week of the year.
|
||||
},
|
||||
});
|
120
node/node_modules/moment/dist/locale/fi.js
generated
vendored
Normal file
120
node/node_modules/moment/dist/locale/fi.js
generated
vendored
Normal file
|
@ -0,0 +1,120 @@
|
|||
//! moment.js locale configuration
|
||||
//! locale : Finnish [fi]
|
||||
//! author : Tarmo Aidantausta : https://github.com/bleadof
|
||||
|
||||
import moment from '../moment';
|
||||
|
||||
var numbersPast = 'nolla yksi kaksi kolme neljä viisi kuusi seitsemän kahdeksan yhdeksän'.split(
|
||||
' '
|
||||
),
|
||||
numbersFuture = [
|
||||
'nolla',
|
||||
'yhden',
|
||||
'kahden',
|
||||
'kolmen',
|
||||
'neljän',
|
||||
'viiden',
|
||||
'kuuden',
|
||||
numbersPast[7],
|
||||
numbersPast[8],
|
||||
numbersPast[9],
|
||||
];
|
||||
function translate(number, withoutSuffix, key, isFuture) {
|
||||
var result = '';
|
||||
switch (key) {
|
||||
case 's':
|
||||
return isFuture ? 'muutaman sekunnin' : 'muutama sekunti';
|
||||
case 'ss':
|
||||
return isFuture ? 'sekunnin' : 'sekuntia';
|
||||
case 'm':
|
||||
return isFuture ? 'minuutin' : 'minuutti';
|
||||
case 'mm':
|
||||
result = isFuture ? 'minuutin' : 'minuuttia';
|
||||
break;
|
||||
case 'h':
|
||||
return isFuture ? 'tunnin' : 'tunti';
|
||||
case 'hh':
|
||||
result = isFuture ? 'tunnin' : 'tuntia';
|
||||
break;
|
||||
case 'd':
|
||||
return isFuture ? 'päivän' : 'päivä';
|
||||
case 'dd':
|
||||
result = isFuture ? 'päivän' : 'päivää';
|
||||
break;
|
||||
case 'M':
|
||||
return isFuture ? 'kuukauden' : 'kuukausi';
|
||||
case 'MM':
|
||||
result = isFuture ? 'kuukauden' : 'kuukautta';
|
||||
break;
|
||||
case 'y':
|
||||
return isFuture ? 'vuoden' : 'vuosi';
|
||||
case 'yy':
|
||||
result = isFuture ? 'vuoden' : 'vuotta';
|
||||
break;
|
||||
}
|
||||
result = verbalNumber(number, isFuture) + ' ' + result;
|
||||
return result;
|
||||
}
|
||||
function verbalNumber(number, isFuture) {
|
||||
return number < 10
|
||||
? isFuture
|
||||
? numbersFuture[number]
|
||||
: numbersPast[number]
|
||||
: number;
|
||||
}
|
||||
|
||||
export default moment.defineLocale('fi', {
|
||||
months: 'tammikuu_helmikuu_maaliskuu_huhtikuu_toukokuu_kesäkuu_heinäkuu_elokuu_syyskuu_lokakuu_marraskuu_joulukuu'.split(
|
||||
'_'
|
||||
),
|
||||
monthsShort: 'tammi_helmi_maalis_huhti_touko_kesä_heinä_elo_syys_loka_marras_joulu'.split(
|
||||
'_'
|
||||
),
|
||||
weekdays: 'sunnuntai_maanantai_tiistai_keskiviikko_torstai_perjantai_lauantai'.split(
|
||||
'_'
|
||||
),
|
||||
weekdaysShort: 'su_ma_ti_ke_to_pe_la'.split('_'),
|
||||
weekdaysMin: 'su_ma_ti_ke_to_pe_la'.split('_'),
|
||||
longDateFormat: {
|
||||
LT: 'HH.mm',
|
||||
LTS: 'HH.mm.ss',
|
||||
L: 'DD.MM.YYYY',
|
||||
LL: 'Do MMMM[ta] YYYY',
|
||||
LLL: 'Do MMMM[ta] YYYY, [klo] HH.mm',
|
||||
LLLL: 'dddd, Do MMMM[ta] YYYY, [klo] HH.mm',
|
||||
l: 'D.M.YYYY',
|
||||
ll: 'Do MMM YYYY',
|
||||
lll: 'Do MMM YYYY, [klo] HH.mm',
|
||||
llll: 'ddd, Do MMM YYYY, [klo] HH.mm',
|
||||
},
|
||||
calendar: {
|
||||
sameDay: '[tänään] [klo] LT',
|
||||
nextDay: '[huomenna] [klo] LT',
|
||||
nextWeek: 'dddd [klo] LT',
|
||||
lastDay: '[eilen] [klo] LT',
|
||||
lastWeek: '[viime] dddd[na] [klo] LT',
|
||||
sameElse: 'L',
|
||||
},
|
||||
relativeTime: {
|
||||
future: '%s päästä',
|
||||
past: '%s sitten',
|
||||
s: translate,
|
||||
ss: translate,
|
||||
m: translate,
|
||||
mm: translate,
|
||||
h: translate,
|
||||
hh: translate,
|
||||
d: translate,
|
||||
dd: translate,
|
||||
M: translate,
|
||||
MM: translate,
|
||||
y: translate,
|
||||
yy: translate,
|
||||
},
|
||||
dayOfMonthOrdinalParse: /\d{1,2}\./,
|
||||
ordinal: '%d.',
|
||||
week: {
|
||||
dow: 1, // Monday is the first day of the week.
|
||||
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
||||
},
|
||||
});
|
58
node/node_modules/moment/dist/locale/fil.js
generated
vendored
Normal file
58
node/node_modules/moment/dist/locale/fil.js
generated
vendored
Normal file
|
@ -0,0 +1,58 @@
|
|||
//! moment.js locale configuration
|
||||
//! locale : Filipino [fil]
|
||||
//! author : Dan Hagman : https://github.com/hagmandan
|
||||
//! author : Matthew Co : https://github.com/matthewdeeco
|
||||
|
||||
import moment from '../moment';
|
||||
|
||||
export default moment.defineLocale('fil', {
|
||||
months: 'Enero_Pebrero_Marso_Abril_Mayo_Hunyo_Hulyo_Agosto_Setyembre_Oktubre_Nobyembre_Disyembre'.split(
|
||||
'_'
|
||||
),
|
||||
monthsShort: 'Ene_Peb_Mar_Abr_May_Hun_Hul_Ago_Set_Okt_Nob_Dis'.split('_'),
|
||||
weekdays: 'Linggo_Lunes_Martes_Miyerkules_Huwebes_Biyernes_Sabado'.split(
|
||||
'_'
|
||||
),
|
||||
weekdaysShort: 'Lin_Lun_Mar_Miy_Huw_Biy_Sab'.split('_'),
|
||||
weekdaysMin: 'Li_Lu_Ma_Mi_Hu_Bi_Sab'.split('_'),
|
||||
longDateFormat: {
|
||||
LT: 'HH:mm',
|
||||
LTS: 'HH:mm:ss',
|
||||
L: 'MM/D/YYYY',
|
||||
LL: 'MMMM D, YYYY',
|
||||
LLL: 'MMMM D, YYYY HH:mm',
|
||||
LLLL: 'dddd, MMMM DD, YYYY HH:mm',
|
||||
},
|
||||
calendar: {
|
||||
sameDay: 'LT [ngayong araw]',
|
||||
nextDay: '[Bukas ng] LT',
|
||||
nextWeek: 'LT [sa susunod na] dddd',
|
||||
lastDay: 'LT [kahapon]',
|
||||
lastWeek: 'LT [noong nakaraang] dddd',
|
||||
sameElse: 'L',
|
||||
},
|
||||
relativeTime: {
|
||||
future: 'sa loob ng %s',
|
||||
past: '%s ang nakalipas',
|
||||
s: 'ilang segundo',
|
||||
ss: '%d segundo',
|
||||
m: 'isang minuto',
|
||||
mm: '%d minuto',
|
||||
h: 'isang oras',
|
||||
hh: '%d oras',
|
||||
d: 'isang araw',
|
||||
dd: '%d araw',
|
||||
M: 'isang buwan',
|
||||
MM: '%d buwan',
|
||||
y: 'isang taon',
|
||||
yy: '%d taon',
|
||||
},
|
||||
dayOfMonthOrdinalParse: /\d{1,2}/,
|
||||
ordinal: function (number) {
|
||||
return number;
|
||||
},
|
||||
week: {
|
||||
dow: 1, // Monday is the first day of the week.
|
||||
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
||||
},
|
||||
});
|
56
node/node_modules/moment/dist/locale/fo.js
generated
vendored
Normal file
56
node/node_modules/moment/dist/locale/fo.js
generated
vendored
Normal file
|
@ -0,0 +1,56 @@
|
|||
//! moment.js locale configuration
|
||||
//! locale : Faroese [fo]
|
||||
//! author : Ragnar Johannesen : https://github.com/ragnar123
|
||||
//! author : Kristian Sakarisson : https://github.com/sakarisson
|
||||
|
||||
import moment from '../moment';
|
||||
|
||||
export default moment.defineLocale('fo', {
|
||||
months: 'januar_februar_mars_apríl_mai_juni_juli_august_september_oktober_november_desember'.split(
|
||||
'_'
|
||||
),
|
||||
monthsShort: 'jan_feb_mar_apr_mai_jun_jul_aug_sep_okt_nov_des'.split('_'),
|
||||
weekdays: 'sunnudagur_mánadagur_týsdagur_mikudagur_hósdagur_fríggjadagur_leygardagur'.split(
|
||||
'_'
|
||||
),
|
||||
weekdaysShort: 'sun_mán_týs_mik_hós_frí_ley'.split('_'),
|
||||
weekdaysMin: 'su_má_tý_mi_hó_fr_le'.split('_'),
|
||||
longDateFormat: {
|
||||
LT: 'HH:mm',
|
||||
LTS: 'HH:mm:ss',
|
||||
L: 'DD/MM/YYYY',
|
||||
LL: 'D MMMM YYYY',
|
||||
LLL: 'D MMMM YYYY HH:mm',
|
||||
LLLL: 'dddd D. MMMM, YYYY HH:mm',
|
||||
},
|
||||
calendar: {
|
||||
sameDay: '[Í dag kl.] LT',
|
||||
nextDay: '[Í morgin kl.] LT',
|
||||
nextWeek: 'dddd [kl.] LT',
|
||||
lastDay: '[Í gjár kl.] LT',
|
||||
lastWeek: '[síðstu] dddd [kl] LT',
|
||||
sameElse: 'L',
|
||||
},
|
||||
relativeTime: {
|
||||
future: 'um %s',
|
||||
past: '%s síðani',
|
||||
s: 'fá sekund',
|
||||
ss: '%d sekundir',
|
||||
m: 'ein minuttur',
|
||||
mm: '%d minuttir',
|
||||
h: 'ein tími',
|
||||
hh: '%d tímar',
|
||||
d: 'ein dagur',
|
||||
dd: '%d dagar',
|
||||
M: 'ein mánaður',
|
||||
MM: '%d mánaðir',
|
||||
y: 'eitt ár',
|
||||
yy: '%d ár',
|
||||
},
|
||||
dayOfMonthOrdinalParse: /\d{1,2}\./,
|
||||
ordinal: '%d.',
|
||||
week: {
|
||||
dow: 1, // Monday is the first day of the week.
|
||||
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
||||
},
|
||||
});
|
69
node/node_modules/moment/dist/locale/fr-ca.js
generated
vendored
Normal file
69
node/node_modules/moment/dist/locale/fr-ca.js
generated
vendored
Normal file
|
@ -0,0 +1,69 @@
|
|||
//! moment.js locale configuration
|
||||
//! locale : French (Canada) [fr-ca]
|
||||
//! author : Jonathan Abourbih : https://github.com/jonbca
|
||||
|
||||
import moment from '../moment';
|
||||
|
||||
export default moment.defineLocale('fr-ca', {
|
||||
months: 'janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre'.split(
|
||||
'_'
|
||||
),
|
||||
monthsShort: 'janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.'.split(
|
||||
'_'
|
||||
),
|
||||
monthsParseExact: true,
|
||||
weekdays: 'dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi'.split('_'),
|
||||
weekdaysShort: 'dim._lun._mar._mer._jeu._ven._sam.'.split('_'),
|
||||
weekdaysMin: 'di_lu_ma_me_je_ve_sa'.split('_'),
|
||||
weekdaysParseExact: true,
|
||||
longDateFormat: {
|
||||
LT: 'HH:mm',
|
||||
LTS: 'HH:mm:ss',
|
||||
L: 'YYYY-MM-DD',
|
||||
LL: 'D MMMM YYYY',
|
||||
LLL: 'D MMMM YYYY HH:mm',
|
||||
LLLL: 'dddd D MMMM YYYY HH:mm',
|
||||
},
|
||||
calendar: {
|
||||
sameDay: '[Aujourd’hui à] LT',
|
||||
nextDay: '[Demain à] LT',
|
||||
nextWeek: 'dddd [à] LT',
|
||||
lastDay: '[Hier à] LT',
|
||||
lastWeek: 'dddd [dernier à] LT',
|
||||
sameElse: 'L',
|
||||
},
|
||||
relativeTime: {
|
||||
future: 'dans %s',
|
||||
past: 'il y a %s',
|
||||
s: 'quelques secondes',
|
||||
ss: '%d secondes',
|
||||
m: 'une minute',
|
||||
mm: '%d minutes',
|
||||
h: 'une heure',
|
||||
hh: '%d heures',
|
||||
d: 'un jour',
|
||||
dd: '%d jours',
|
||||
M: 'un mois',
|
||||
MM: '%d mois',
|
||||
y: 'un an',
|
||||
yy: '%d ans',
|
||||
},
|
||||
dayOfMonthOrdinalParse: /\d{1,2}(er|e)/,
|
||||
ordinal: function (number, period) {
|
||||
switch (period) {
|
||||
// Words with masculine grammatical gender: mois, trimestre, jour
|
||||
default:
|
||||
case 'M':
|
||||
case 'Q':
|
||||
case 'D':
|
||||
case 'DDD':
|
||||
case 'd':
|
||||
return number + (number === 1 ? 'er' : 'e');
|
||||
|
||||
// Words with feminine grammatical gender: semaine
|
||||
case 'w':
|
||||
case 'W':
|
||||
return number + (number === 1 ? 're' : 'e');
|
||||
}
|
||||
},
|
||||
});
|
73
node/node_modules/moment/dist/locale/fr-ch.js
generated
vendored
Normal file
73
node/node_modules/moment/dist/locale/fr-ch.js
generated
vendored
Normal file
|
@ -0,0 +1,73 @@
|
|||
//! moment.js locale configuration
|
||||
//! locale : French (Switzerland) [fr-ch]
|
||||
//! author : Gaspard Bucher : https://github.com/gaspard
|
||||
|
||||
import moment from '../moment';
|
||||
|
||||
export default moment.defineLocale('fr-ch', {
|
||||
months: 'janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre'.split(
|
||||
'_'
|
||||
),
|
||||
monthsShort: 'janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.'.split(
|
||||
'_'
|
||||
),
|
||||
monthsParseExact: true,
|
||||
weekdays: 'dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi'.split('_'),
|
||||
weekdaysShort: 'dim._lun._mar._mer._jeu._ven._sam.'.split('_'),
|
||||
weekdaysMin: 'di_lu_ma_me_je_ve_sa'.split('_'),
|
||||
weekdaysParseExact: true,
|
||||
longDateFormat: {
|
||||
LT: 'HH:mm',
|
||||
LTS: 'HH:mm:ss',
|
||||
L: 'DD.MM.YYYY',
|
||||
LL: 'D MMMM YYYY',
|
||||
LLL: 'D MMMM YYYY HH:mm',
|
||||
LLLL: 'dddd D MMMM YYYY HH:mm',
|
||||
},
|
||||
calendar: {
|
||||
sameDay: '[Aujourd’hui à] LT',
|
||||
nextDay: '[Demain à] LT',
|
||||
nextWeek: 'dddd [à] LT',
|
||||
lastDay: '[Hier à] LT',
|
||||
lastWeek: 'dddd [dernier à] LT',
|
||||
sameElse: 'L',
|
||||
},
|
||||
relativeTime: {
|
||||
future: 'dans %s',
|
||||
past: 'il y a %s',
|
||||
s: 'quelques secondes',
|
||||
ss: '%d secondes',
|
||||
m: 'une minute',
|
||||
mm: '%d minutes',
|
||||
h: 'une heure',
|
||||
hh: '%d heures',
|
||||
d: 'un jour',
|
||||
dd: '%d jours',
|
||||
M: 'un mois',
|
||||
MM: '%d mois',
|
||||
y: 'un an',
|
||||
yy: '%d ans',
|
||||
},
|
||||
dayOfMonthOrdinalParse: /\d{1,2}(er|e)/,
|
||||
ordinal: function (number, period) {
|
||||
switch (period) {
|
||||
// Words with masculine grammatical gender: mois, trimestre, jour
|
||||
default:
|
||||
case 'M':
|
||||
case 'Q':
|
||||
case 'D':
|
||||
case 'DDD':
|
||||
case 'd':
|
||||
return number + (number === 1 ? 'er' : 'e');
|
||||
|
||||
// Words with feminine grammatical gender: semaine
|
||||
case 'w':
|
||||
case 'W':
|
||||
return number + (number === 1 ? 're' : 'e');
|
||||
}
|
||||
},
|
||||
week: {
|
||||
dow: 1, // Monday is the first day of the week.
|
||||
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
||||
},
|
||||
});
|
78
node/node_modules/moment/dist/locale/fr.js
generated
vendored
Normal file
78
node/node_modules/moment/dist/locale/fr.js
generated
vendored
Normal file
|
@ -0,0 +1,78 @@
|
|||
//! moment.js locale configuration
|
||||
//! locale : French [fr]
|
||||
//! author : John Fischer : https://github.com/jfroffice
|
||||
|
||||
import moment from '../moment';
|
||||
|
||||
export default moment.defineLocale('fr', {
|
||||
months: 'janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre'.split(
|
||||
'_'
|
||||
),
|
||||
monthsShort: 'janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.'.split(
|
||||
'_'
|
||||
),
|
||||
monthsParseExact: true,
|
||||
weekdays: 'dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi'.split('_'),
|
||||
weekdaysShort: 'dim._lun._mar._mer._jeu._ven._sam.'.split('_'),
|
||||
weekdaysMin: 'di_lu_ma_me_je_ve_sa'.split('_'),
|
||||
weekdaysParseExact: true,
|
||||
longDateFormat: {
|
||||
LT: 'HH:mm',
|
||||
LTS: 'HH:mm:ss',
|
||||
L: 'DD/MM/YYYY',
|
||||
LL: 'D MMMM YYYY',
|
||||
LLL: 'D MMMM YYYY HH:mm',
|
||||
LLLL: 'dddd D MMMM YYYY HH:mm',
|
||||
},
|
||||
calendar: {
|
||||
sameDay: '[Aujourd’hui à] LT',
|
||||
nextDay: '[Demain à] LT',
|
||||
nextWeek: 'dddd [à] LT',
|
||||
lastDay: '[Hier à] LT',
|
||||
lastWeek: 'dddd [dernier à] LT',
|
||||
sameElse: 'L',
|
||||
},
|
||||
relativeTime: {
|
||||
future: 'dans %s',
|
||||
past: 'il y a %s',
|
||||
s: 'quelques secondes',
|
||||
ss: '%d secondes',
|
||||
m: 'une minute',
|
||||
mm: '%d minutes',
|
||||
h: 'une heure',
|
||||
hh: '%d heures',
|
||||
d: 'un jour',
|
||||
dd: '%d jours',
|
||||
M: 'un mois',
|
||||
MM: '%d mois',
|
||||
y: 'un an',
|
||||
yy: '%d ans',
|
||||
},
|
||||
dayOfMonthOrdinalParse: /\d{1,2}(er|)/,
|
||||
ordinal: function (number, period) {
|
||||
switch (period) {
|
||||
// TODO: Return 'e' when day of month > 1. Move this case inside
|
||||
// block for masculine words below.
|
||||
// See https://github.com/moment/moment/issues/3375
|
||||
case 'D':
|
||||
return number + (number === 1 ? 'er' : '');
|
||||
|
||||
// Words with masculine grammatical gender: mois, trimestre, jour
|
||||
default:
|
||||
case 'M':
|
||||
case 'Q':
|
||||
case 'DDD':
|
||||
case 'd':
|
||||
return number + (number === 1 ? 'er' : 'e');
|
||||
|
||||
// Words with feminine grammatical gender: semaine
|
||||
case 'w':
|
||||
case 'W':
|
||||
return number + (number === 1 ? 're' : 'e');
|
||||
}
|
||||
},
|
||||
week: {
|
||||
dow: 1, // Monday is the first day of the week.
|
||||
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
||||
},
|
||||
});
|
77
node/node_modules/moment/dist/locale/fy.js
generated
vendored
Normal file
77
node/node_modules/moment/dist/locale/fy.js
generated
vendored
Normal file
|
@ -0,0 +1,77 @@
|
|||
//! moment.js locale configuration
|
||||
//! locale : Frisian [fy]
|
||||
//! author : Robin van der Vliet : https://github.com/robin0van0der0v
|
||||
|
||||
import moment from '../moment';
|
||||
|
||||
var monthsShortWithDots = 'jan._feb._mrt._apr._mai_jun._jul._aug._sep._okt._nov._des.'.split(
|
||||
'_'
|
||||
),
|
||||
monthsShortWithoutDots = 'jan_feb_mrt_apr_mai_jun_jul_aug_sep_okt_nov_des'.split(
|
||||
'_'
|
||||
);
|
||||
|
||||
export default moment.defineLocale('fy', {
|
||||
months: 'jannewaris_febrewaris_maart_april_maaie_juny_july_augustus_septimber_oktober_novimber_desimber'.split(
|
||||
'_'
|
||||
),
|
||||
monthsShort: function (m, format) {
|
||||
if (!m) {
|
||||
return monthsShortWithDots;
|
||||
} else if (/-MMM-/.test(format)) {
|
||||
return monthsShortWithoutDots[m.month()];
|
||||
} else {
|
||||
return monthsShortWithDots[m.month()];
|
||||
}
|
||||
},
|
||||
monthsParseExact: true,
|
||||
weekdays: 'snein_moandei_tiisdei_woansdei_tongersdei_freed_sneon'.split(
|
||||
'_'
|
||||
),
|
||||
weekdaysShort: 'si._mo._ti._wo._to._fr._so.'.split('_'),
|
||||
weekdaysMin: 'Si_Mo_Ti_Wo_To_Fr_So'.split('_'),
|
||||
weekdaysParseExact: true,
|
||||
longDateFormat: {
|
||||
LT: 'HH:mm',
|
||||
LTS: 'HH:mm:ss',
|
||||
L: 'DD-MM-YYYY',
|
||||
LL: 'D MMMM YYYY',
|
||||
LLL: 'D MMMM YYYY HH:mm',
|
||||
LLLL: 'dddd D MMMM YYYY HH:mm',
|
||||
},
|
||||
calendar: {
|
||||
sameDay: '[hjoed om] LT',
|
||||
nextDay: '[moarn om] LT',
|
||||
nextWeek: 'dddd [om] LT',
|
||||
lastDay: '[juster om] LT',
|
||||
lastWeek: '[ôfrûne] dddd [om] LT',
|
||||
sameElse: 'L',
|
||||
},
|
||||
relativeTime: {
|
||||
future: 'oer %s',
|
||||
past: '%s lyn',
|
||||
s: 'in pear sekonden',
|
||||
ss: '%d sekonden',
|
||||
m: 'ien minút',
|
||||
mm: '%d minuten',
|
||||
h: 'ien oere',
|
||||
hh: '%d oeren',
|
||||
d: 'ien dei',
|
||||
dd: '%d dagen',
|
||||
M: 'ien moanne',
|
||||
MM: '%d moannen',
|
||||
y: 'ien jier',
|
||||
yy: '%d jierren',
|
||||
},
|
||||
dayOfMonthOrdinalParse: /\d{1,2}(ste|de)/,
|
||||
ordinal: function (number) {
|
||||
return (
|
||||
number +
|
||||
(number === 1 || number === 8 || number >= 20 ? 'ste' : 'de')
|
||||
);
|
||||
},
|
||||
week: {
|
||||
dow: 1, // Monday is the first day of the week.
|
||||
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
||||
},
|
||||
});
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue