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: 11 months 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 (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-06-08T21:20:54.000Z (about 9 years ago)
- Last Synced: 2025-06-18T18:04:35.340Z (about 1 year ago)
- Topics: babel, babel-util, logging
- Language: JavaScript
- Homepage:
- Size: 8.79 KB
- Stars: 6
- Watchers: 1
- 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;
```