@types/node 10.17.23 → 10.17.24

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 v10.17/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/v10.
9
9
 
10
10
  ### Additional Details
11
- * Last updated: Tue, 19 May 2020 18:08:54 GMT
11
+ * Last updated: Tue, 19 May 2020 23:09:37 GMT
12
12
  * Dependencies: none
13
13
  * Global values: `Buffer`, `NodeJS`, `Symbol`, `__dirname`, `__filename`, `clearImmediate`, `clearInterval`, `clearTimeout`, `console`, `exports`, `global`, `module`, `process`, `require`, `setImmediate`, `setInterval`, `setTimeout`
14
14
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/node",
3
- "version": "10.17.23",
3
+ "version": "10.17.24",
4
4
  "description": "TypeScript definitions for Node.js",
5
5
  "license": "MIT",
6
6
  "contributors": [
@@ -206,6 +206,6 @@
206
206
  },
207
207
  "scripts": {},
208
208
  "dependencies": {},
209
- "typesPublisherContentHash": "bef1559c7e87bb376972ad0b2461221809600f991c6be3940465e3c11104b925",
209
+ "typesPublisherContentHash": "0adc707c5ae9841177fcc7b9a39b2ffac9c03d40bafd0ea06465a0b0ca0b576e",
210
210
  "typeScriptVersion": "3.0"
211
211
  }
node v10.17/util.d.ts CHANGED
@@ -112,6 +112,7 @@ declare module "util" {
112
112
  function isAnyArrayBuffer(object: any): boolean;
113
113
  function isArgumentsObject(object: any): object is IArguments;
114
114
  function isArrayBuffer(object: any): object is ArrayBuffer;
115
+ function isArrayBufferView(object: any): object is ArrayBufferView;
115
116
  function isAsyncFunction(object: any): boolean;
116
117
  function isBooleanObject(object: any): object is Boolean;
117
118
  function isBoxedPrimitive(object: any): object is (Number | Boolean | String | Symbol /* | Object(BigInt) | Object(Symbol) */);