Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/babel-utils/babel-log
Log Babel paths & nodes to console with nice formatting
https://github.com/babel-utils/babel-log
babel babel-util logging
Last synced: about 3 hours ago
JSON representation
Log Babel paths & nodes to console with nice formatting
- Host: GitHub
- URL: https://github.com/babel-utils/babel-log
- Owner: babel-utils
- License: mit
- Created: 2017-05-24T01:56:54.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-06-08T21:20:54.000Z (over 7 years ago)
- Last Synced: 2024-09-17T03:15:48.027Z (about 2 months ago)
- Topics: babel, babel-util, logging
- Language: JavaScript
- Homepage:
- Size: 8.79 KB
- Stars: 6
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# babel-log
> Log Babel paths & nodes to console with nice formatting
```js
import log from 'babel-log';log(node);
log(path);
log({ any: 'value' });
```## API
```ts
export default function log(value: Object): void;
```