https://github.com/davidfig/json-depth
  
  
    Prettify JSON for output with a number of options, including inlining after a set depth 
    https://github.com/davidfig/json-depth
  
        Last synced: 8 months ago 
        JSON representation
    
Prettify JSON for output with a number of options, including inlining after a set depth
- Host: GitHub
 - URL: https://github.com/davidfig/json-depth
 - Owner: davidfig
 - License: mit
 - Created: 2018-10-08T02:16:30.000Z (about 7 years ago)
 - Default Branch: master
 - Last Pushed: 2018-10-08T02:16:41.000Z (about 7 years ago)
 - Last Synced: 2025-02-19T09:18:29.159Z (9 months ago)
 - Language: JavaScript
 - Size: 6.84 KB
 - Stars: 0
 - Watchers: 2
 - Forks: 0
 - Open Issues: 0
 - 
            Metadata Files:
            
- Readme: README.md
 - License: LICENSE
 
 
Awesome Lists containing this project
README
          # json-depth
## rationale
I wanted to remove semicolons from all my old files. And after looking through too many complicated es-beautifiers, I decided to write a dirty and stupid program.
## WARNING
This is a very stupid program designed for how I write code. Read how it works before using:
1. Read each line in a file (not each parsed javascript code line, but each "physical" line)
2. If the line has only one semicolon then remove the semicolon
3. If the line has more than one semicolon then leave all the semicolons (covers for(;;) usage) except a semicolon as the final character in a line
4. Overwrite original file unless -o is provided
That's it. 
## installation
    npm i dirty-semicolons
## command-line options
    $ dirty-semicolons --help
    Usage: index [options] 
    Quick and dirty semicolon remover for javascript. WARNING: does not use a real parser. See https://github.com/davidfig/dirty-semicolons
    Options:
        -V, --version  output the version number
        -o, --output   Output file (default is to overwrite original file)
        -h, --help     output usage information
## API
```
/**
 * remove semicolons from a file
 * @param {string} filename
 * @param {string} [output] filename (uses filename if not provided)
 * @param {function} [callback] callback when complete
 */
module.exports = function(file, output, callback)
```
## license  
MIT License  
(c) 2017 [YOPEY YOPEY LLC](https://yopeyopey.com/) by [David Figatner](https://twitter.com/yopey_yopey/)