https://github.com/wincent/dented
↔️ Indenting and dedenting utilities
https://github.com/wincent/dented
javascript strings-manipulation
Last synced: over 1 year ago
JSON representation
↔️ Indenting and dedenting utilities
- Host: GitHub
- URL: https://github.com/wincent/dented
- Owner: wincent
- License: mit
- Created: 2019-01-18T20:27:59.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-01-18T22:02:18.000Z (over 7 years ago)
- Last Synced: 2025-01-05T15:43:34.658Z (over 1 year ago)
- Topics: javascript, strings-manipulation
- Language: JavaScript
- Homepage:
- Size: 59.6 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Dented
[](http://badge.fury.io/js/dented)
```javascript
import {dedent, indent} from 'dented';
const dedented = dedent`
nested
`;
const indented = indent(dedented, 8);
```