Closed micahjon closed 5 years ago
Convert all throw ("error name...") usages to throw new Error("error name..."), so that stack traces are preserved for debugging and tracking down errors.
throw ("error name...")
throw new Error("error name...")
See issue #43
Thanks!
Convert all
throw ("error name...")
usages tothrow new Error("error name...")
, so that stack traces are preserved for debugging and tracking down errors.See issue #43