ship-gis/node_modules/redent/index.js

6 lines
207 B
JavaScript
Raw Normal View 히스토리

2026-01-22 09:14:01 +09:00
'use strict';
const stripIndent = require('strip-indent');
const indentString = require('indent-string');
module.exports = (string, count = 0, options) => indentString(stripIndent(string), count, options);