token-types
Advanced tools
Comparing version 2.1.0 to 2.1.1
@@ -231,3 +231,4 @@ "use strict"; | ||
put(b, off, v) { | ||
return ieee754.write(b, v, off, false, 10, this.len); | ||
ieee754.write(b, v, off, false, 10, this.len); | ||
return off + this.len; | ||
} | ||
@@ -244,3 +245,4 @@ }; | ||
put(b, off, v) { | ||
return ieee754.write(b, v, off, true, 10, this.len); | ||
ieee754.write(b, v, off, true, 10, this.len); | ||
return off + this.len; | ||
} | ||
@@ -305,3 +307,4 @@ }; | ||
put(b, off, v) { | ||
return ieee754.write(b, v, off, false, 63, this.len); | ||
ieee754.write(b, v, off, false, 63, this.len); | ||
return off + this.len; | ||
} | ||
@@ -318,3 +321,4 @@ }; | ||
put(b, off, v) { | ||
return ieee754.write(b, v, off, true, 63, this.len); | ||
ieee754.write(b, v, off, true, 63, this.len); | ||
return off + this.len; | ||
} | ||
@@ -550,2 +554,1 @@ }; | ||
exports.writeIntBE = writeIntBE; | ||
//# sourceMappingURL=index.js.map |
{ | ||
"name": "token-types", | ||
"version": "2.1.0", | ||
"version": "2.1.1", | ||
"description": "Common token types for decoding and encoding numeric and string values", | ||
@@ -44,20 +44,20 @@ "author": { | ||
"devDependencies": { | ||
"@types/chai": "^4.2.12", | ||
"@types/mocha": "^5.2.5", | ||
"@types/node": "^14.6.4", | ||
"@types/chai": "^4.2.14", | ||
"@types/mocha": "^8.2.0", | ||
"@types/node": "^14.14.20", | ||
"chai": "^4.2.0", | ||
"coveralls": "^3.1.0", | ||
"del-cli": "^3.0.0", | ||
"del-cli": "^3.0.1", | ||
"mocha": "^7.2.0", | ||
"nyc": "^15.0.0", | ||
"remark-cli": "^7.0.1", | ||
"remark-preset-lint-recommended": "^3.0.3", | ||
"nyc": "^15.1.0", | ||
"remark-cli": "^9.0.0", | ||
"remark-preset-lint-recommended": "^5.0.0", | ||
"source-map-support": "^0.5.19", | ||
"ts-node": "^9.0.0", | ||
"tslint": "^6.0.0", | ||
"typescript": "^4.0.2" | ||
"ts-node": "^9.1.1", | ||
"tslint": "^6.1.3", | ||
"typescript": "^4.1.3" | ||
}, | ||
"dependencies": { | ||
"@tokenizer/token": "^0.1.1", | ||
"ieee754": "^1.1.13" | ||
"ieee754": "^1.2.1" | ||
}, | ||
@@ -64,0 +64,0 @@ "remarkConfig": { |
![Node.js CI](https://github.com/Borewit/token-types/workflows/Node.js%20CI/badge.svg) | ||
[![NPM version](https://badge.fury.io/js/token-types.svg)](https://npmjs.org/package/token-types) | ||
[![npm downloads](http://img.shields.io/npm/dm/token-types.svg)](https://npmcharts.com/compare/token-types,strtok3?start=1200&interval=30) | ||
[![Dependencies](https://david-dm.org/Borewit/token-types.svg)](https://david-dm.org/Borewit/token-types) | ||
[![coveralls](https://coveralls.io/repos/github/Borewit/token-types/badge.svg?branch=master)](https://coveralls.io/github/Borewit/token-types?branch=master) | ||
@@ -6,0 +5,0 @@ [![Codacy Badge](https://api.codacy.com/project/badge/Grade/4723ce4613fc49cda8db5eed29f18834)](https://www.codacy.com/app/Borewit/token-types?utm_source=github.com&utm_medium=referral&utm_content=Borewit/token-types&utm_campaign=Badge_Grade) |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
721
27163
108
Updatedieee754@^1.2.1