@ot-builder/io-bin-name 1.7.3 → 1.7.5

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.
package/lib/main/index.js CHANGED
@@ -1,6 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.writeNames = exports.readNames = void 0;
3
+ exports.readNames = readNames;
4
+ exports.writeNames = writeNames;
4
5
  const bin_util_1 = require("@ot-builder/bin-util");
5
6
  const ot_name_1 = require("@ot-builder/ot-name");
6
7
  const meta_1 = require("../meta");
@@ -16,7 +17,6 @@ function readNames(sfnt) {
16
17
  const meta = bufMeta ? new bin_util_1.BinaryView(bufMeta).next(meta_1.MetaTableIo) : null;
17
18
  return { name, stat, meta };
18
19
  }
19
- exports.readNames = readNames;
20
20
  function writeNames(sink, nd) {
21
21
  if (nd.name)
22
22
  sink.add(ot_name_1.Name.Tag, bin_util_1.Frag.packFrom(name_1.NameIo, nd.name));
@@ -25,5 +25,4 @@ function writeNames(sink, nd) {
25
25
  if (nd.meta)
26
26
  sink.add(ot_name_1.Meta.Tag, bin_util_1.Frag.packFrom(meta_1.MetaTableIo, nd.meta));
27
27
  }
28
- exports.writeNames = writeNames;
29
28
  //# sourceMappingURL=index.js.map
package/lib/meta/index.js CHANGED
@@ -46,7 +46,7 @@ const DataMap = {
46
46
  }
47
47
  };
48
48
  const KnownTextTags = new Map([
49
- [`dlng`, `utf8`],
49
+ [`dlng`, `utf8`], // Design languages
50
50
  [`slng`, `utf8`] // Supported languages
51
51
  ]);
52
52
  //# sourceMappingURL=index.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ot-builder/io-bin-name",
3
- "version": "1.7.3",
3
+ "version": "1.7.5",
4
4
  "license": "MIT",
5
5
  "repository": {
6
6
  "type": "git",
@@ -23,24 +23,24 @@
23
23
  "access": "public"
24
24
  },
25
25
  "dependencies": {
26
- "@ot-builder/bin-util": "1.7.3",
27
- "@ot-builder/common-impl": "1.7.3",
28
- "@ot-builder/errors": "1.7.3",
29
- "@ot-builder/ot-glyphs": "1.7.3",
30
- "@ot-builder/ot-metadata": "1.7.3",
31
- "@ot-builder/ot-name": "1.7.3",
32
- "@ot-builder/prelude": "1.7.3",
33
- "@ot-builder/primitive": "1.7.3",
34
- "@ot-builder/ot-sfnt": "1.7.3",
35
- "@ot-builder/io-bin-sfnt": "1.7.3",
26
+ "@ot-builder/bin-util": "1.7.5",
27
+ "@ot-builder/common-impl": "1.7.5",
28
+ "@ot-builder/errors": "1.7.5",
29
+ "@ot-builder/ot-glyphs": "1.7.5",
30
+ "@ot-builder/ot-metadata": "1.7.5",
31
+ "@ot-builder/ot-name": "1.7.5",
32
+ "@ot-builder/prelude": "1.7.5",
33
+ "@ot-builder/primitive": "1.7.5",
34
+ "@ot-builder/ot-sfnt": "1.7.5",
35
+ "@ot-builder/io-bin-sfnt": "1.7.5",
36
36
  "iconv-lite": "^0.6.3",
37
- "tslib": "^2.0.0"
37
+ "tslib": "^2.8.1"
38
38
  },
39
39
  "devDependencies": {
40
- "@ot-builder/io-bin-glyph-store": "1.7.3",
41
- "@ot-builder/io-bin-metadata": "1.7.3",
42
- "@ot-builder/test-util": "1.7.3",
43
- "@types/jest": "^29.5.5",
44
- "jest": "^29.6.2"
40
+ "@ot-builder/io-bin-glyph-store": "1.7.5",
41
+ "@ot-builder/io-bin-metadata": "1.7.5",
42
+ "@ot-builder/test-util": "1.7.5",
43
+ "@types/jest": "^29.5.14",
44
+ "jest": "^29.7.0"
45
45
  }
46
46
  }