Michał Kownacki

Results 4 issues of Michał Kownacki

``` "use strict"; var clone = require("clone"); function Foo() {} Foo.prototype.prop = 1; var a = new Foo; a.prop = 2; var b = clone(a); console.log(a, b); ``` Hello, please...

``` javascript var isEqual = require("is-equal"); var a = {}; var b = {}; a.x = {y: a}; b.x = {y: b}; console.log(isEqual(a, b)); ``` I get `RangeError: Maximum call...

bug
feature request
pull request wanted

Hi, `deepDiff.diff({}, [])` shows difference but this doesn't: ``` function A() {} var a = new A(); var b = {}; deepDiff.diff(a, b) ``` I think it would be reasonable...

enhancement

Moment.js has http://momentjs.com/docs/#/i18n/ It could be nice to utilize it in this element too. @abdonrd If you can't do it I can try to do it myself.