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.1.7 to 0.1.8

8

dist/yaku.js
/*
Yaku v0.1.7
Yaku v0.1.8
(c) 2015 Yad Smood. http://ysmood.org

@@ -237,10 +237,8 @@ License MIT

Yaku.onUnhandledRejection = function(reason, p) {
var hStack, sStack, stack;
var hStack, stack;
if (typeof console === $object) {
hStack = '';
sStack = '';
if (isLongStackTrace && p[$handlerStack]) {
while (p) {
hStack = p[$handlerStack] + hStack;
sStack = p[$settlerStack];
p = p[$prePromise];

@@ -250,3 +248,3 @@ }

stack = reason ? reason.stack || reason : reason;
console.error(('Unhandled rejection Error:' + stack + sStack + hStack).replace(RegExp(".+" + __filename + ".+\\n", "g"), ''));
console.error(('Unhandled rejection Error: ' + stack + hStack).replace(RegExp(".+" + __filename + ".+\\n", "g"), ''));
}

@@ -253,0 +251,0 @@ };

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

@@ -27,3 +27,3 @@ "main": "dist/yaku.js",

"files": [
"dist"
"dist/yaku.js"
],

@@ -30,0 +30,0 @@ "devDependencies": {

@@ -294,3 +294,3 @@ # Overview

- ### **[@enableLongStackTrace](src/yaku.coffee?source#L243)**
- ### **[@enableLongStackTrace](src/yaku.coffee?source#L241)**

@@ -297,0 +297,0 @@ It is used to enable the long stack trace.

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