@types/node 13.13.7 → 13.13.8

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.
node v13.13/README.md CHANGED
@@ -8,7 +8,7 @@ This package contains type definitions for Node.js (http://nodejs.org/).
8
8
  Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node/v13.
9
9
 
10
10
  ### Additional Details
11
- * Last updated: Tue, 19 May 2020 18:23:54 GMT
11
+ * Last updated: Tue, 19 May 2020 23:09:25 GMT
12
12
  * Dependencies: none
13
13
  * Global values: `Buffer`, `Symbol`, `__dirname`, `__filename`, `clearImmediate`, `clearInterval`, `clearTimeout`, `console`, `exports`, `global`, `module`, `process`, `queueMicrotask`, `require`, `setImmediate`, `setInterval`, `setTimeout`
14
14
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/node",
3
- "version": "13.13.7",
3
+ "version": "13.13.8",
4
4
  "description": "TypeScript definitions for Node.js",
5
5
  "license": "MIT",
6
6
  "contributors": [
@@ -246,6 +246,6 @@
246
246
  },
247
247
  "scripts": {},
248
248
  "dependencies": {},
249
- "typesPublisherContentHash": "5546bddf012bf92def10c39349867ae2f9ba315b700c581bc90cee06dfb6b7a5",
249
+ "typesPublisherContentHash": "2a3c717a90de5f5d2e67f7472bdf458b09ca743b8a9f93d1cbd5df78f07446cf",
250
250
  "typeScriptVersion": "3.0"
251
251
  }
node v13.13/util.d.ts CHANGED
@@ -123,6 +123,7 @@ declare module "util" {
123
123
  function isAnyArrayBuffer(object: any): boolean;
124
124
  function isArgumentsObject(object: any): object is IArguments;
125
125
  function isArrayBuffer(object: any): object is ArrayBuffer;
126
+ function isArrayBufferView(object: any): object is ArrayBufferView;
126
127
  function isAsyncFunction(object: any): boolean;
127
128
  function isBooleanObject(object: any): object is Boolean;
128
129
  function isBoxedPrimitive(object: any): object is (Number | Boolean | String | Symbol /* | Object(BigInt) | Object(Symbol) */);