Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@ot-builder/ot-encoding

Package Overview
Dependencies
Maintainers
1
Versions
75
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ot-builder/ot-encoding - npm Package Compare versions

Comparing version
0.10.5
to
0.10.6
+1
-1
CHANGELOG.json

@@ -5,3 +5,3 @@ {

{
"date": "Mon, 20 Apr 2020 06:40:47 GMT",
"date": "Mon, 20 Apr 2020 06:43:41 GMT",
"tag": "@ot-builder/ot-encoding_v0.10.5",

@@ -8,0 +8,0 @@ "version": "0.10.5",

# Change Log - @ot-builder/ot-encoding
This log was last generated on Mon, 20 Apr 2020 06:40:47 GMT and should not be manually modified.
This log was last generated on Mon, 20 Apr 2020 06:43:41 GMT and should not be manually modified.

@@ -9,3 +9,3 @@ <!-- Start content -->

Mon, 20 Apr 2020 06:40:47 GMT
Mon, 20 Apr 2020 06:43:41 GMT

@@ -12,0 +12,0 @@ ### Patches

@@ -10,3 +10,3 @@ {

},
"version": "0.10.5",
"version": "0.10.6",
"main": "./lib/index.js",

@@ -23,4 +23,4 @@ "types": "./lib/index.d.ts",

"dependencies": {
"@ot-builder/ot-glyphs": "0.10.5",
"@ot-builder/prelude": "0.10.5",
"@ot-builder/ot-glyphs": "0.10.6",
"@ot-builder/prelude": "0.10.6",
"tslib": "^1.9.3"

@@ -27,0 +27,0 @@ },

export {};
//# sourceMappingURL=vs-encoding.test.d.ts.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const vs_encoding_map_impl_1 = require("./vs-encoding-map-impl");
describe("VS encoding map", () => {
test("Should work", () => {
const vsm = new vs_encoding_map_impl_1.VsEncodingMapT();
vsm.set(0, 0, 0);
vsm.set(0, 0xffffff, 1);
vsm.set(0xffffff, 0, 2);
vsm.set(0xffffff, 0xffffff, 3);
expect(vsm.get(0, 0)).toBe(0);
expect(vsm.get(0, 0xffffff)).toBe(1);
expect(vsm.get(0xffffff, 0)).toBe(2);
expect(vsm.get(0xffffff, 0xffffff)).toBe(3);
});
});
//# sourceMappingURL=vs-encoding.test.js.map