whichever-data
Version:
An ES module with some functions making it easier to accept a wide range of binary-data holding objects like Array, TypedArray, DataView, ArrayBuffer and Node.js's Buffer as input without having to actually know which of them were used as the input.
32 lines (31 loc) • 964 B
JSON
{
"name": "whichever-data",
"version": "1.1.0",
"author": "Joakim L. Christiansen (https://joakimch.github.io)",
"license": "MIT",
"type": "module",
"main": "source/whicheverData.js",
"files": [
"source/*"
],
"repository": "github:JoakimCh/whichever-data",
"funding": "https://joakimch.github.io/funding.html",
"description": "An ES module with some functions making it easier to accept a wide range of binary-data holding objects like Array, TypedArray, DataView, ArrayBuffer and Node.js's Buffer as input without having to actually know which of them were used as the input.",
"keywords": [
"binary",
"data",
"dataTo",
"TypedArray",
"DataView",
"ArrayBuffer",
"Buffer",
"input"
],
"scripts": {
"test": "node tests/runAll.js",
"docs": "jsdoc2md --template readmeTemplate.md source/*.js --param-list-format list> readme.md"
},
"devDependencies": {
"jsdoc-to-markdown": "^7.0.1"
}
}