Socket
Socket
Sign inDemoInstall

opentype.js

Package Overview
Dependencies
Maintainers
1
Versions
47
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

opentype.js - npm Package Compare versions

Comparing version 0.4.2 to 0.4.3

build/opentype.min.js

2

bower.json
{
"name": "opentype.js",
"version": "0.4.2",
"version": "0.4.3",
"main": "dist/opentype.js",

@@ -5,0 +5,0 @@ "keywords": [

{
"name": "opentype.js",
"description": "OpenType font parser",
"version": "0.4.2",
"version": "0.4.3",
"author": {

@@ -6,0 +6,0 @@ "name": "Frederik De Bleser",

@@ -0,1 +1,5 @@

0.4.3 (Nov 26, 2014)
====================
* Un-break node.js support.
0.4.2 (Nov 24, 2014)

@@ -2,0 +6,0 @@ ====================

// Data types used in the OpenType font file.
// All OpenType fonts use Motorola-style byte ordering (Big Endian)
/* global WeakMap */
'use strict';

@@ -295,3 +297,3 @@

// memoize charstring encoding using WeakMap if available
var wmm = window.WeakMap && new window.WeakMap();
var wmm = typeof WeakMap === 'function' && new WeakMap();
// Convert a list of CharString operations to bytes.

@@ -298,0 +300,0 @@ encode.CHARSTRING = function (ops) {

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc