Open romap0 opened 4 years ago
In this line:
return (b = function (_b) { ^
you assign b variable but it is not defined in that scope, so it produces ReferenceError when I run tests using uuid function.
b
ReferenceError
I'm getting the same error when using https://github.com/Klowner/casual-browserify and running casual.uuid:
casual.uuid
In this line:
you assign
b
variable but it is not defined in that scope, so it producesReferenceError
when I run tests using uuid function.