cdk-comprehend-s3olap 2.0.217 → 2.0.218
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.jsii +4 -4
- package/lib/cdk-comprehend-s3olap.js +2 -2
- package/lib/comprehend-lambdas.js +2 -2
- package/lib/iam-roles.js +4 -4
- package/node_modules/@esbuild/linux-x64/bin/esbuild +0 -0
- package/node_modules/@esbuild/linux-x64/package.json +1 -1
- package/node_modules/aws-sdk/CHANGELOG.md +7 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/m2-2021-04-28.min.json +19 -3
- package/node_modules/aws-sdk/apis/models.lex.v2-2020-08-07.min.json +854 -54
- package/node_modules/aws-sdk/apis/models.lex.v2-2020-08-07.paginators.json +30 -0
- package/node_modules/aws-sdk/apis/snowball-2016-06-30.examples.json +26 -0
- package/node_modules/aws-sdk/apis/snowball-2016-06-30.min.json +113 -55
- package/node_modules/aws-sdk/apis/snowball-2016-06-30.paginators.json +5 -0
- package/node_modules/aws-sdk/clients/codegurusecurity.d.ts +3 -3
- package/node_modules/aws-sdk/clients/connect.d.ts +2 -2
- package/node_modules/aws-sdk/clients/lexmodelsv2.d.ts +1035 -33
- package/node_modules/aws-sdk/clients/m2.d.ts +14 -4
- package/node_modules/aws-sdk/clients/snowball.d.ts +101 -9
- package/node_modules/aws-sdk/clients/translate.d.ts +1 -1
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +59 -80
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +122 -164
- package/node_modules/aws-sdk/dist/aws-sdk.js +3 -3
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +2 -2
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/node_modules/esbuild/bin/esbuild +1 -1
- package/node_modules/esbuild/lib/main.d.ts +1 -1
- package/node_modules/esbuild/lib/main.js +8 -8
- package/node_modules/esbuild/package.json +23 -23
- package/node_modules/is-typed-array/CHANGELOG.md +6 -0
- package/node_modules/is-typed-array/index.js +2 -81
- package/node_modules/is-typed-array/package.json +4 -6
- package/node_modules/which-typed-array/CHANGELOG.md +7 -0
- package/node_modules/which-typed-array/index.js +55 -22
- package/node_modules/which-typed-array/package.json +3 -4
- package/node_modules/which-typed-array/test/index.js +1 -1
- package/package.json +5 -5
@@ -199,7 +199,7 @@ for your current platform.`);
|
|
199
199
|
"node_modules",
|
200
200
|
".cache",
|
201
201
|
"esbuild",
|
202
|
-
`pnpapi-${pkg.replace("/", "-")}-${"0.18.
|
202
|
+
`pnpapi-${pkg.replace("/", "-")}-${"0.18.14"}-${path.basename(subpath)}`
|
203
203
|
);
|
204
204
|
if (!fs.existsSync(binTargetPath)) {
|
205
205
|
fs.mkdirSync(path.dirname(binTargetPath), { recursive: true });
|
@@ -1,6 +1,6 @@
|
|
1
1
|
export type Platform = 'browser' | 'node' | 'neutral'
|
2
2
|
export type Format = 'iife' | 'cjs' | 'esm'
|
3
|
-
export type Loader = 'base64' | 'binary' | 'copy' | 'css' | 'dataurl' | 'default' | 'empty' | 'file' | 'js' | 'json' | 'jsx' | 'text' | 'ts' | 'tsx'
|
3
|
+
export type Loader = 'base64' | 'binary' | 'copy' | 'css' | 'dataurl' | 'default' | 'empty' | 'file' | 'js' | 'json' | 'jsx' | 'local-css' | 'text' | 'ts' | 'tsx'
|
4
4
|
export type LogLevel = 'verbose' | 'debug' | 'info' | 'warning' | 'error' | 'silent'
|
5
5
|
export type Charset = 'ascii' | 'utf8'
|
6
6
|
export type Drop = 'console' | 'debugger'
|
@@ -745,8 +745,8 @@ function createChannel(streamIn) {
|
|
745
745
|
if (isFirstPacket) {
|
746
746
|
isFirstPacket = false;
|
747
747
|
let binaryVersion = String.fromCharCode(...bytes);
|
748
|
-
if (binaryVersion !== "0.18.
|
749
|
-
throw new Error(`Cannot start service: Host version "${"0.18.
|
748
|
+
if (binaryVersion !== "0.18.14") {
|
749
|
+
throw new Error(`Cannot start service: Host version "${"0.18.14"}" does not match binary version ${quote(binaryVersion)}`);
|
750
750
|
}
|
751
751
|
return;
|
752
752
|
}
|
@@ -1915,7 +1915,7 @@ for your current platform.`);
|
|
1915
1915
|
"node_modules",
|
1916
1916
|
".cache",
|
1917
1917
|
"esbuild",
|
1918
|
-
`pnpapi-${pkg.replace("/", "-")}-${"0.18.
|
1918
|
+
`pnpapi-${pkg.replace("/", "-")}-${"0.18.14"}-${path.basename(subpath)}`
|
1919
1919
|
);
|
1920
1920
|
if (!fs.existsSync(binTargetPath)) {
|
1921
1921
|
fs.mkdirSync(path.dirname(binTargetPath), { recursive: true });
|
@@ -1950,7 +1950,7 @@ if (process.env.ESBUILD_WORKER_THREADS !== "0") {
|
|
1950
1950
|
}
|
1951
1951
|
}
|
1952
1952
|
var _a;
|
1953
|
-
var isInternalWorkerThread = ((_a = worker_threads == null ? void 0 : worker_threads.workerData) == null ? void 0 : _a.esbuildVersion) === "0.18.
|
1953
|
+
var isInternalWorkerThread = ((_a = worker_threads == null ? void 0 : worker_threads.workerData) == null ? void 0 : _a.esbuildVersion) === "0.18.14";
|
1954
1954
|
var esbuildCommandAndArgs = () => {
|
1955
1955
|
if ((!ESBUILD_BINARY_PATH || false) && (path2.basename(__filename) !== "main.js" || path2.basename(__dirname) !== "lib")) {
|
1956
1956
|
throw new Error(
|
@@ -2017,7 +2017,7 @@ var fsAsync = {
|
|
2017
2017
|
}
|
2018
2018
|
}
|
2019
2019
|
};
|
2020
|
-
var version = "0.18.
|
2020
|
+
var version = "0.18.14";
|
2021
2021
|
var build = (options) => ensureServiceIsRunning().build(options);
|
2022
2022
|
var context = (buildOptions) => ensureServiceIsRunning().context(buildOptions);
|
2023
2023
|
var transform = (input, options) => ensureServiceIsRunning().transform(input, options);
|
@@ -2127,7 +2127,7 @@ var ensureServiceIsRunning = () => {
|
|
2127
2127
|
if (longLivedService)
|
2128
2128
|
return longLivedService;
|
2129
2129
|
let [command, args] = esbuildCommandAndArgs();
|
2130
|
-
let child = child_process.spawn(command, args.concat(`--service=${"0.18.
|
2130
|
+
let child = child_process.spawn(command, args.concat(`--service=${"0.18.14"}`, "--ping"), {
|
2131
2131
|
windowsHide: true,
|
2132
2132
|
stdio: ["pipe", "pipe", "inherit"],
|
2133
2133
|
cwd: defaultWD
|
@@ -2227,7 +2227,7 @@ var runServiceSync = (callback) => {
|
|
2227
2227
|
esbuild: node_exports
|
2228
2228
|
});
|
2229
2229
|
callback(service);
|
2230
|
-
let stdout = child_process.execFileSync(command, args.concat(`--service=${"0.18.
|
2230
|
+
let stdout = child_process.execFileSync(command, args.concat(`--service=${"0.18.14"}`), {
|
2231
2231
|
cwd: defaultWD,
|
2232
2232
|
windowsHide: true,
|
2233
2233
|
input: stdin,
|
@@ -2247,7 +2247,7 @@ var workerThreadService = null;
|
|
2247
2247
|
var startWorkerThreadService = (worker_threads2) => {
|
2248
2248
|
let { port1: mainPort, port2: workerPort } = new worker_threads2.MessageChannel();
|
2249
2249
|
let worker = new worker_threads2.Worker(__filename, {
|
2250
|
-
workerData: { workerPort, defaultWD, esbuildVersion: "0.18.
|
2250
|
+
workerData: { workerPort, defaultWD, esbuildVersion: "0.18.14" },
|
2251
2251
|
transferList: [workerPort],
|
2252
2252
|
// From node's documentation: https://nodejs.org/api/worker_threads.html
|
2253
2253
|
//
|
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "esbuild",
|
3
|
-
"version": "0.18.
|
3
|
+
"version": "0.18.14",
|
4
4
|
"description": "An extremely fast JavaScript and CSS bundler and minifier.",
|
5
5
|
"repository": "https://github.com/evanw/esbuild",
|
6
6
|
"scripts": {
|
@@ -15,28 +15,28 @@
|
|
15
15
|
"esbuild": "bin/esbuild"
|
16
16
|
},
|
17
17
|
"optionalDependencies": {
|
18
|
-
"@esbuild/android-arm": "0.18.
|
19
|
-
"@esbuild/android-arm64": "0.18.
|
20
|
-
"@esbuild/android-x64": "0.18.
|
21
|
-
"@esbuild/darwin-arm64": "0.18.
|
22
|
-
"@esbuild/darwin-x64": "0.18.
|
23
|
-
"@esbuild/freebsd-arm64": "0.18.
|
24
|
-
"@esbuild/freebsd-x64": "0.18.
|
25
|
-
"@esbuild/linux-arm": "0.18.
|
26
|
-
"@esbuild/linux-arm64": "0.18.
|
27
|
-
"@esbuild/linux-ia32": "0.18.
|
28
|
-
"@esbuild/linux-loong64": "0.18.
|
29
|
-
"@esbuild/linux-mips64el": "0.18.
|
30
|
-
"@esbuild/linux-ppc64": "0.18.
|
31
|
-
"@esbuild/linux-riscv64": "0.18.
|
32
|
-
"@esbuild/linux-s390x": "0.18.
|
33
|
-
"@esbuild/linux-x64": "0.18.
|
34
|
-
"@esbuild/netbsd-x64": "0.18.
|
35
|
-
"@esbuild/openbsd-x64": "0.18.
|
36
|
-
"@esbuild/sunos-x64": "0.18.
|
37
|
-
"@esbuild/win32-arm64": "0.18.
|
38
|
-
"@esbuild/win32-ia32": "0.18.
|
39
|
-
"@esbuild/win32-x64": "0.18.
|
18
|
+
"@esbuild/android-arm": "0.18.14",
|
19
|
+
"@esbuild/android-arm64": "0.18.14",
|
20
|
+
"@esbuild/android-x64": "0.18.14",
|
21
|
+
"@esbuild/darwin-arm64": "0.18.14",
|
22
|
+
"@esbuild/darwin-x64": "0.18.14",
|
23
|
+
"@esbuild/freebsd-arm64": "0.18.14",
|
24
|
+
"@esbuild/freebsd-x64": "0.18.14",
|
25
|
+
"@esbuild/linux-arm": "0.18.14",
|
26
|
+
"@esbuild/linux-arm64": "0.18.14",
|
27
|
+
"@esbuild/linux-ia32": "0.18.14",
|
28
|
+
"@esbuild/linux-loong64": "0.18.14",
|
29
|
+
"@esbuild/linux-mips64el": "0.18.14",
|
30
|
+
"@esbuild/linux-ppc64": "0.18.14",
|
31
|
+
"@esbuild/linux-riscv64": "0.18.14",
|
32
|
+
"@esbuild/linux-s390x": "0.18.14",
|
33
|
+
"@esbuild/linux-x64": "0.18.14",
|
34
|
+
"@esbuild/netbsd-x64": "0.18.14",
|
35
|
+
"@esbuild/openbsd-x64": "0.18.14",
|
36
|
+
"@esbuild/sunos-x64": "0.18.14",
|
37
|
+
"@esbuild/win32-arm64": "0.18.14",
|
38
|
+
"@esbuild/win32-ia32": "0.18.14",
|
39
|
+
"@esbuild/win32-x64": "0.18.14"
|
40
40
|
},
|
41
41
|
"license": "MIT"
|
42
42
|
}
|
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
7
7
|
|
8
|
+
## [v1.1.12](https://github.com/inspect-js/is-typed-array/compare/v1.1.11...v1.1.12) - 2023-07-17
|
9
|
+
|
10
|
+
### Commits
|
11
|
+
|
12
|
+
- [Refactor] use `which-typed-array` for all internals [`7619405`](https://github.com/inspect-js/is-typed-array/commit/761940532de595f6721fed101b02814dcfa7fe4e)
|
13
|
+
|
8
14
|
## [v1.1.11](https://github.com/inspect-js/is-typed-array/compare/v1.1.10...v1.1.11) - 2023-07-17
|
9
15
|
|
10
16
|
### Commits
|
@@ -1,86 +1,7 @@
|
|
1
1
|
'use strict';
|
2
2
|
|
3
|
-
var
|
4
|
-
var availableTypedArrays = require('available-typed-arrays');
|
5
|
-
var callBind = require('call-bind');
|
6
|
-
var callBound = require('call-bind/callBound');
|
7
|
-
|
8
|
-
var $toString = callBound('Object.prototype.toString');
|
9
|
-
var hasToStringTag = require('has-tostringtag/shams')();
|
10
|
-
var gOPD = require('gopd');
|
11
|
-
|
12
|
-
var g = typeof globalThis === 'undefined' ? global : globalThis;
|
13
|
-
var typedArrays = availableTypedArrays();
|
14
|
-
|
15
|
-
var $indexOf = callBound('Array.prototype.indexOf', true) || function indexOf(array, value) {
|
16
|
-
for (var i = 0; i < array.length; i += 1) {
|
17
|
-
if (array[i] === value) {
|
18
|
-
return i;
|
19
|
-
}
|
20
|
-
}
|
21
|
-
return -1;
|
22
|
-
};
|
23
|
-
var $slice = callBound('String.prototype.slice');
|
24
|
-
var cache = { __proto__: null };
|
25
|
-
var getPrototypeOf = Object.getPrototypeOf; // require('getprototypeof');
|
26
|
-
if (hasToStringTag && gOPD && getPrototypeOf) {
|
27
|
-
forEach(typedArrays, function (typedArray) {
|
28
|
-
var arr = new g[typedArray]();
|
29
|
-
if (Symbol.toStringTag in arr) {
|
30
|
-
var proto = getPrototypeOf(arr);
|
31
|
-
var descriptor = gOPD(proto, Symbol.toStringTag);
|
32
|
-
if (!descriptor) {
|
33
|
-
var superProto = getPrototypeOf(proto);
|
34
|
-
descriptor = gOPD(superProto, Symbol.toStringTag);
|
35
|
-
}
|
36
|
-
cache['$' + typedArray] = callBind(descriptor.get);
|
37
|
-
}
|
38
|
-
});
|
39
|
-
} else {
|
40
|
-
forEach(typedArrays, function (typedArray) {
|
41
|
-
var arr = new g[typedArray]();
|
42
|
-
cache['$' + typedArray] = callBind(arr.slice);
|
43
|
-
});
|
44
|
-
}
|
45
|
-
|
46
|
-
var tryTypedArrays = function tryAllTypedArrays(value) {
|
47
|
-
var anyTrue = false;
|
48
|
-
forEach(cache, function (getter, typedArray) {
|
49
|
-
if (!anyTrue) {
|
50
|
-
try {
|
51
|
-
anyTrue = ('$' + getter(value)) === typedArray;
|
52
|
-
} catch (e) { /**/ }
|
53
|
-
}
|
54
|
-
});
|
55
|
-
return anyTrue;
|
56
|
-
};
|
57
|
-
|
58
|
-
var trySlices = function tryAllSlices(value) {
|
59
|
-
var anyTrue = false;
|
60
|
-
forEach(cache, function (getter) {
|
61
|
-
if (!anyTrue) {
|
62
|
-
try {
|
63
|
-
getter(value);
|
64
|
-
anyTrue = true;
|
65
|
-
} catch (e) { /**/ }
|
66
|
-
}
|
67
|
-
});
|
68
|
-
return anyTrue;
|
69
|
-
};
|
3
|
+
var whichTypedArray = require('which-typed-array');
|
70
4
|
|
71
5
|
module.exports = function isTypedArray(value) {
|
72
|
-
|
73
|
-
if (!hasToStringTag) {
|
74
|
-
var tag = $slice($toString(value), 8, -1);
|
75
|
-
if ($indexOf(typedArrays, tag) > -1) {
|
76
|
-
return true;
|
77
|
-
}
|
78
|
-
if (tag !== 'Object') {
|
79
|
-
return false;
|
80
|
-
}
|
81
|
-
// node < 0.6 hits here on real Typed Arrays
|
82
|
-
return trySlices(value);
|
83
|
-
}
|
84
|
-
if (!gOPD) { return null; } // unknown engine
|
85
|
-
return tryTypedArrays(value);
|
6
|
+
return !!whichTypedArray(value);
|
86
7
|
};
|
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "is-typed-array",
|
3
|
-
"version": "1.1.
|
3
|
+
"version": "1.1.12",
|
4
4
|
"author": {
|
5
5
|
"name": "Jordan Harband",
|
6
6
|
"email": "ljharb@gmail.com",
|
@@ -58,11 +58,7 @@
|
|
58
58
|
"@@toStringTag"
|
59
59
|
],
|
60
60
|
"dependencies": {
|
61
|
-
"
|
62
|
-
"call-bind": "^1.0.2",
|
63
|
-
"for-each": "^0.3.3",
|
64
|
-
"gopd": "^1.0.1",
|
65
|
-
"has-tostringtag": "^1.0.0"
|
61
|
+
"which-typed-array": "^1.1.11"
|
66
62
|
},
|
67
63
|
"devDependencies": {
|
68
64
|
"@ljharb/eslint-config": "^21.1.0",
|
@@ -70,6 +66,8 @@
|
|
70
66
|
"auto-changelog": "^2.4.0",
|
71
67
|
"eslint": "=8.8.0",
|
72
68
|
"evalmd": "^0.0.19",
|
69
|
+
"for-each": "^0.3.3",
|
70
|
+
"has-tostringtag": "^1.0.0",
|
73
71
|
"in-publish": "^2.0.1",
|
74
72
|
"is-callable": "^1.2.7",
|
75
73
|
"make-arrow-function": "^1.2.0",
|
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
7
7
|
|
8
|
+
## [v1.1.11](https://github.com/inspect-js/which-typed-array/compare/v1.1.10...v1.1.11) - 2023-07-17
|
9
|
+
|
10
|
+
### Commits
|
11
|
+
|
12
|
+
- [Fix] `node < v0.6` lacks proper Object toString behavior [`b8fd654`](https://github.com/inspect-js/which-typed-array/commit/b8fd65479c0bd18385378cfae79750ebf7cb6ee7)
|
13
|
+
- [Dev Deps] update `tape` [`e1734c9`](https://github.com/inspect-js/which-typed-array/commit/e1734c99d79880ab11efa55220498a7a1e887834)
|
14
|
+
|
8
15
|
## [v1.1.10](https://github.com/inspect-js/which-typed-array/compare/v1.1.9...v1.1.10) - 2023-07-10
|
9
16
|
|
10
17
|
### Commits
|
@@ -13,44 +13,77 @@ var g = typeof globalThis === 'undefined' ? global : globalThis;
|
|
13
13
|
var typedArrays = availableTypedArrays();
|
14
14
|
|
15
15
|
var $slice = callBound('String.prototype.slice');
|
16
|
-
var toStrTags = { __proto__: null };
|
17
16
|
var getPrototypeOf = Object.getPrototypeOf; // require('getprototypeof');
|
17
|
+
|
18
|
+
var $indexOf = callBound('Array.prototype.indexOf', true) || function indexOf(array, value) {
|
19
|
+
for (var i = 0; i < array.length; i += 1) {
|
20
|
+
if (array[i] === value) {
|
21
|
+
return i;
|
22
|
+
}
|
23
|
+
}
|
24
|
+
return -1;
|
25
|
+
};
|
26
|
+
var cache = { __proto__: null };
|
18
27
|
if (hasToStringTag && gOPD && getPrototypeOf) {
|
19
28
|
forEach(typedArrays, function (typedArray) {
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
descriptor = gOPD(superProto, Symbol.toStringTag);
|
28
|
-
}
|
29
|
-
toStrTags[typedArray] = callBind(descriptor.get);
|
29
|
+
var arr = new g[typedArray]();
|
30
|
+
if (Symbol.toStringTag in arr) {
|
31
|
+
var proto = getPrototypeOf(arr);
|
32
|
+
var descriptor = gOPD(proto, Symbol.toStringTag);
|
33
|
+
if (!descriptor) {
|
34
|
+
var superProto = getPrototypeOf(proto);
|
35
|
+
descriptor = gOPD(superProto, Symbol.toStringTag);
|
30
36
|
}
|
37
|
+
cache['$' + typedArray] = callBind(descriptor.get);
|
31
38
|
}
|
32
39
|
});
|
40
|
+
} else {
|
41
|
+
forEach(typedArrays, function (typedArray) {
|
42
|
+
var arr = new g[typedArray]();
|
43
|
+
cache['$' + typedArray] = callBind(arr.slice);
|
44
|
+
});
|
33
45
|
}
|
34
46
|
|
35
47
|
var tryTypedArrays = function tryAllTypedArrays(value) {
|
36
|
-
var
|
37
|
-
forEach(
|
38
|
-
if (!
|
48
|
+
var found = false;
|
49
|
+
forEach(cache, function (getter, typedArray) {
|
50
|
+
if (!found) {
|
39
51
|
try {
|
40
|
-
|
41
|
-
|
42
|
-
foundName = name;
|
52
|
+
if ('$' + getter(value) === typedArray) {
|
53
|
+
found = $slice(typedArray, 1);
|
43
54
|
}
|
44
|
-
} catch (e) {}
|
55
|
+
} catch (e) { /**/ }
|
45
56
|
}
|
46
57
|
});
|
47
|
-
return
|
58
|
+
return found;
|
48
59
|
};
|
49
60
|
|
50
|
-
var
|
61
|
+
var trySlices = function tryAllSlices(value) {
|
62
|
+
var found = false;
|
63
|
+
forEach(cache, function (getter, name) {
|
64
|
+
if (!found) {
|
65
|
+
try {
|
66
|
+
getter(value);
|
67
|
+
found = $slice(name, 1);
|
68
|
+
} catch (e) { /**/ }
|
69
|
+
}
|
70
|
+
});
|
71
|
+
return found;
|
72
|
+
};
|
51
73
|
|
52
74
|
module.exports = function whichTypedArray(value) {
|
53
|
-
if (!
|
54
|
-
if (!hasToStringTag
|
75
|
+
if (!value || typeof value !== 'object') { return false; }
|
76
|
+
if (!hasToStringTag) {
|
77
|
+
var tag = $slice($toString(value), 8, -1);
|
78
|
+
if ($indexOf(typedArrays, tag) > -1) {
|
79
|
+
return tag;
|
80
|
+
}
|
81
|
+
if (tag !== 'Object') {
|
82
|
+
return false;
|
83
|
+
}
|
84
|
+
// node < 0.6 hits here on real Typed Arrays
|
85
|
+
return trySlices(value);
|
86
|
+
}
|
87
|
+
if (!gOPD) { return null; } // unknown engine
|
55
88
|
return tryTypedArrays(value);
|
56
89
|
};
|
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "which-typed-array",
|
3
|
-
"version": "1.1.
|
3
|
+
"version": "1.1.11",
|
4
4
|
"author": {
|
5
5
|
"name": "Jordan Harband",
|
6
6
|
"email": "ljharb@gmail.com",
|
@@ -62,8 +62,7 @@
|
|
62
62
|
"call-bind": "^1.0.2",
|
63
63
|
"for-each": "^0.3.3",
|
64
64
|
"gopd": "^1.0.1",
|
65
|
-
"has-tostringtag": "^1.0.0"
|
66
|
-
"is-typed-array": "^1.1.10"
|
65
|
+
"has-tostringtag": "^1.0.0"
|
67
66
|
},
|
68
67
|
"devDependencies": {
|
69
68
|
"@ljharb/eslint-config": "^21.1.0",
|
@@ -77,7 +76,7 @@
|
|
77
76
|
"npmignore": "^0.3.0",
|
78
77
|
"nyc": "^10.3.2",
|
79
78
|
"safe-publish-latest": "^2.0.0",
|
80
|
-
"tape": "^5.6.
|
79
|
+
"tape": "^5.6.5"
|
81
80
|
},
|
82
81
|
"testling": {
|
83
82
|
"files": "test/index.js",
|
@@ -90,7 +90,7 @@ test('Typed Arrays', function (t) {
|
|
90
90
|
var TypedArray = global[typedArray];
|
91
91
|
if (isCallable(TypedArray)) {
|
92
92
|
var arr = new TypedArray(10);
|
93
|
-
t.equal(
|
93
|
+
t.equal(whichTypedArray(arr), typedArray, 'new ' + typedArray + '(10) is typed array of type ' + typedArray);
|
94
94
|
} else {
|
95
95
|
t.comment('# SKIP ' + typedArray + ' is not supported');
|
96
96
|
}
|
package/package.json
CHANGED
@@ -45,7 +45,7 @@
|
|
45
45
|
"@typescript-eslint/parser": "^5",
|
46
46
|
"aws-cdk-lib": "^2.87.0",
|
47
47
|
"constructs": "^10.0.5",
|
48
|
-
"esbuild": "^0.18.
|
48
|
+
"esbuild": "^0.18.14",
|
49
49
|
"eslint": "^8",
|
50
50
|
"eslint-import-resolver-node": "^0.3.7",
|
51
51
|
"eslint-import-resolver-typescript": "^2.7.1",
|
@@ -58,7 +58,7 @@
|
|
58
58
|
"jsii-pacmak": "^1.85.0",
|
59
59
|
"jsii-rosetta": "1.x",
|
60
60
|
"npm-check-updates": "^16",
|
61
|
-
"projen": "^0.71.
|
61
|
+
"projen": "^0.71.142",
|
62
62
|
"standard-version": "^9",
|
63
63
|
"ts-jest": "^27",
|
64
64
|
"typescript": "^4.9.5"
|
@@ -69,9 +69,9 @@
|
|
69
69
|
},
|
70
70
|
"dependencies": {
|
71
71
|
"aws-cdk-lib": "^2.87.0",
|
72
|
-
"aws-sdk": "^2.
|
72
|
+
"aws-sdk": "^2.1417.0",
|
73
73
|
"constructs": "^10.0.5",
|
74
|
-
"esbuild": "^0.18.
|
74
|
+
"esbuild": "^0.18.14"
|
75
75
|
},
|
76
76
|
"bundledDependencies": [
|
77
77
|
"aws-sdk",
|
@@ -96,7 +96,7 @@
|
|
96
96
|
],
|
97
97
|
"main": "lib/index.js",
|
98
98
|
"license": "Apache-2.0",
|
99
|
-
"version": "2.0.
|
99
|
+
"version": "2.0.218",
|
100
100
|
"jest": {
|
101
101
|
"testMatch": [
|
102
102
|
"<rootDir>/src/**/__tests__/**/*.ts?(x)",
|