@yume-chan/dataview-bigint-polyfill
Advanced tools
Comparing version 0.0.16 to 0.0.17
@@ -5,2 +5,8 @@ { | ||
{ | ||
"version": "0.0.17", | ||
"tag": "@yume-chan/dataview-bigint-polyfill_v0.0.17", | ||
"date": "Tue, 18 Oct 2022 09:32:30 GMT", | ||
"comments": {} | ||
}, | ||
{ | ||
"version": "0.0.16", | ||
@@ -7,0 +13,0 @@ "tag": "@yume-chan/dataview-bigint-polyfill_v0.0.16", |
# Change Log - @yume-chan/dataview-bigint-polyfill | ||
This log was last generated on Sat, 28 May 2022 03:56:37 GMT and should not be manually modified. | ||
This log was last generated on Tue, 18 Oct 2022 09:32:30 GMT and should not be manually modified. | ||
## 0.0.17 | ||
Tue, 18 Oct 2022 09:32:30 GMT | ||
_Version update only_ | ||
## 0.0.16 | ||
@@ -6,0 +11,0 @@ Sat, 28 May 2022 03:56:37 GMT |
{ | ||
"name": "@yume-chan/dataview-bigint-polyfill", | ||
"version": "0.0.16", | ||
"version": "0.0.17", | ||
"description": "Polyfill for `DataView#getBigInt64`, `DataView#getBigUint64`, `DataView#setBigInt64` and `DataView#setBigUint64`", | ||
@@ -19,3 +19,3 @@ "keywords": [ | ||
}, | ||
"homepage": "https://github.com/yume-chan/ya-webadb/tree/master/libraries/dataview-bigint-polyfill#readme", | ||
"homepage": "https://github.com/yume-chan/ya-webadb/tree/main/libraries/dataview-bigint-polyfill#readme", | ||
"repository": { | ||
@@ -33,7 +33,7 @@ "type": "git", | ||
"dependencies": { | ||
"tslib": "^2.3.1" | ||
"tslib": "^2.4.0" | ||
}, | ||
"devDependencies": { | ||
"jest": "^28.1.0", | ||
"typescript": "4.7.2", | ||
"jest": "^28.1.2", | ||
"typescript": "^4.7.4", | ||
"@yume-chan/ts-package-builder": "^1.0.0" | ||
@@ -45,4 +45,3 @@ }, | ||
"//test": "jest --coverage" | ||
}, | ||
"readme": "# @yume-chan/dataview-bigint-polyfill\n\nPolyfill for `DataView#getBigInt64`, `DataView#getBigUint64`, `DataView#setBigInt64` and `DataView#setBigUint64`.\n\nRequires native `BigInt` support.\n\n## Flavors\n\nIt ships with 3 flavors:\n\n### Pure: provide alternative implementations.\n\n```ts\nimport { getBigInt64, getBigUint64, setBigInt64, setBigUint64 } from '@yume-chan/dataview-bigint-polyfill';\n\ngetBigInt64(dataView, byteOffset, littleEndian);\ngetBigUint64(dataView, byteOffset, littleEndian);\nsetBigInt64(dataView, byteOffset, value, littleEndian);\nsetBigUint64(dataView, byteOffset, value, littleEndian);\n```\n\n### Fallback: use native implementations if available.\n\n```ts\nimport { getBigInt64, getBigUint64, setBigInt64, setBigUint64 } from '@yume-chan/dataview-bigint-polyfill/esm/fallback';\n\ngetBigInt64(dataView, byteOffset, littleEndian);\ngetBigUint64(dataView, byteOffset, littleEndian);\nsetBigInt64(dataView, byteOffset, value, littleEndian);\nsetBigUint64(dataView, byteOffset, value, littleEndian);\n```\n\n### Polyfill: patch `DataView.prototype` when native support is not available.\n\n```ts\nimport '@yume-chan/dataview-bigint-polyfill/esm/polyfill.js';\n\ndataView.getBigInt64(byteOffset, littleEndian);\ndataView.getBigUint64(byteOffset, littleEndian);\ndataView.setBigInt64(byteOffset, value, littleEndian);\ndataView.setBigUint64(byteOffset, value, littleEndian);\n```\n" | ||
} | ||
} |
No website
QualityPackage does not have a website.
Found 1 instance in 1 package
No website
QualityPackage does not have a website.
Found 1 instance in 1 package
21052
25
242
Updatedtslib@^2.4.0