仲裁视频会议H5
gyj a551f33a6e 视频会议上传文件 il y a 2 ans
..
index.js 视频会议 il y a 2 ans
license 视频会议 il y a 2 ans
package.json 视频会议上传文件 il y a 2 ans
readme.md 视频会议 il y a 2 ans

readme.md

strip-indent Build Status

Strip leading whitespace from each line in a string

The line with the least number of leading whitespace, ignoring empty lines, determines the number to remove.

Useful for removing redundant indentation.

Install

$ npm install --save strip-indent

Usage

const stripIndent = require('strip-indent');

const str = '\tunicorn\n\t\tcake';
/*
	unicorn
		cake
*/

stripIndent('\tunicorn\n\t\tcake');
/*
unicorn
	cake
*/

Related

License

MIT © Sindre Sorhus