0.0.3 • Published 4 years ago

js-error-trace-cleaner v0.0.3

Weekly downloads
2
License
Apache-2.0
Repository
github
Last release
4 years ago

JS-error-trace-cleaner

JS-error-trace-cleaner is a js error cleanup utility.

Example

Before cleanup

  • Error: test at Object. (C:\Users\test\Desktop\test\JS-error-trace-cleaner\build\src\index.js:15:11) at Module._compile (internal/modules/cjs/loader.js:1137:30) at Object.Module._extensions..js (internal/modules/cjs/loader.js:1157:10) at Module.load (internal/modules/cjs/loader.js:985:32) at Function.Module._load (internal/modules/cjs/loader.js:878:14) at Function.executeUserEntryPoint as runMain at internal/main/run_main_module.js:17:47

After cleanup:

  • test Object. (C:\Users\test\Desktop\test\JS-error-trace-cleaner\build\src\index.js:15:11) Module._compile (internal/modules/cjs/loader.js:11

Import

const clean = require("js-error-trace-cleaner");

or

import clean from "js-error-trace-cleaner";

Example Usage

clean(new Error())

Contributing

Read our contributing guide to learn about our development process, how to propose bugfixes and improvements, and how to build and test your changes to js-error-trace-cleaner.

Changelog

Recently Updated? Please read the changelog.

0.0.3

4 years ago

0.0.2

4 years ago

0.0.1

4 years ago