update node modules

This commit is contained in:
Robert
2021-04-01 10:37:02 +01:00
parent d0b1259bbe
commit def266fc62
3 changed files with 9 additions and 2 deletions

7
node_modules/y18n/CHANGELOG.md generated vendored
View File

@@ -2,6 +2,13 @@
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.
### 4.0.1 (2020-11-30)
### Bug Fixes
* address prototype pollution issue ([#108](https://www.github.com/yargs/y18n/issues/108)) ([a9ac604](https://www.github.com/yargs/y18n/commit/a9ac604abf756dec9687be3843e2c93bfe581f25))
<a name="4.0.0"></a>
# [4.0.0](https://github.com/yargs/y18n/compare/v3.2.1...v4.0.0) (2017-10-10)

2
node_modules/y18n/index.js generated vendored
View File

@@ -11,7 +11,7 @@ function Y18N (opts) {
this.fallbackToLanguage = typeof opts.fallbackToLanguage === 'boolean' ? opts.fallbackToLanguage : true
// internal stuff.
this.cache = {}
this.cache = Object.create(null)
this.writeQueue = []
}

2
node_modules/y18n/package.json generated vendored
View File

@@ -1,6 +1,6 @@
{
"name": "y18n",
"version": "4.0.0",
"version": "4.0.1",
"description": "the bare-bones internationalization library used by yargs",
"main": "index.js",
"scripts": {