Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

svg2ttf

Package Overview
Dependencies
Maintainers
1
Versions
33
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

svg2ttf - npm Package Compare versions

Comparing version 4.2.0 to 4.2.1

6

CHANGELOG.md

@@ -0,1 +1,7 @@

4.2.1 / 2019-05-23
------------------
- Fix "new Bufer" deprecation warnings, #78.
4.2.0 / 2018-12-10

@@ -2,0 +8,0 @@ ------------------

4

package.json
{
"name": "svg2ttf",
"version": "4.2.0",
"version": "4.2.1",
"description": "Converts SVG font to TTF font",

@@ -37,4 +37,4 @@ "keywords": [

"eslint": "^5.10.0",
"mocha": "^5.0.0"
"mocha": "^6.0.0"
}
}

@@ -107,2 +107,7 @@ #!/usr/bin/env node

fs.writeFileSync(args.outfile[0], new Buffer(svg2ttf(svg, options).buffer));
var result = Buffer.from ?
Buffer.from(svg2ttf(svg, options).buffer)
:
new Buffer(svg2ttf(svg, options).buffer);
fs.writeFileSync(args.outfile[0], result);
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