New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

yaku

Package Overview
Dependencies
Maintainers
1
Versions
137
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

yaku - npm Package Compare versions

Comparing version 0.2.6 to 0.2.7

9

lib/yaku.js
/*
Yaku v0.2.6
Yaku v0.2.7
(c) 2015 Yad Smood. http://ysmood.org

@@ -585,3 +585,3 @@ License MIT

trim = function(str) {
return str.replace(/^\s+|\s+$/g);
return str.replace(/^\s+|\s+$/g, '');
};

@@ -607,4 +607,5 @@ if (isLongStackTrace && p[$promiseTrace]) {

clean = function(stack, cleanPrev) {
if (cleanPrev) {
stack = stack.slice(0, stack.indexOf('\n' + $fromPrevious));
var i;
if (cleanPrev && (i = stack.indexOf('\n' + $fromPrevious)) > 0) {
stack = stack.slice(0, i);
}

@@ -611,0 +612,0 @@ if (typeof __filename === 'string') {

{
"name": "yaku",
"version": "0.2.6",
"version": "0.2.7",
"description": "An ES6 Promise/A+ implementation that doesn't hurt.",

@@ -5,0 +5,0 @@ "main": "lib/yaku.js",

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