Socket
Socket
Sign inDemoInstall

jstransformer

Package Overview
Dependencies
3
Maintainers
5
Versions
6
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.0.4 to 1.0.0

9

CHANGELOG.md

@@ -5,5 +5,8 @@ # Change Log

## [Unreleased][unreleased]
## [1.0.0] - 2016-06-06
### Changed
- Browser support is fixed
- Marked as stable
## [0.0.4][0.0.4]
## [0.0.4] - 2015-11-23
### Changed

@@ -33,5 +36,5 @@ - Switched to [Keep a Changelog](http://keepachangelog.com/) spec for CHANGELOG.md

[unreleased]: https://github.com/jstransformers/jstransformer/compare/0.0.4...HEAD
[1.0.0]: https://github.com/jstransformers/jstransformer/compare/0.0.4...1.0.0
[0.0.4]: https://github.com/jstransformers/jstransformer/compare/0.0.3...0.0.4
[0.0.3]: https://github.com/jstransformers/jstransformer/compare/0.0.2...0.0.3
[0.0.2]: https://github.com/jstransformers/jstransformer/compare/0.0.1...0.0.2

@@ -16,4 +16,9 @@ 'use strict';

tr.normalizeAsync = normalizeAsync;
tr.readFile = Promise.denodeify(fs.readFile);
tr.readFileSync = fs.readFileSync;
if (fs.readFile) {
tr.readFile = Promise.denodeify(fs.readFile);
tr.readFileSync = fs.readFileSync;
} else {
tr.readFile = function () { throw new Error('fs.readFile unsupported'); };
tr.readFileSync = function () { throw new Error('fs.readFileSync unsupported'); };
}

@@ -20,0 +25,0 @@ function normalizeFn(result) {

{
"name": "jstransformer",
"version": "0.0.4",
"version": "1.0.0",
"description": "Normalize the API of any jstransformer",

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

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc