新增: - backend/venv/ - Python 虚拟环境 - backend/start.sh - 启动脚本(使用虚拟环境) - backend/requirements.txt - 依赖列表 - .gitignore - 忽略虚拟环境和缓存文件 说明: - 每个项目使用独立虚拟环境 - 避免依赖冲突 - 启动脚本自动创建和激活虚拟环境
43 lines
906 B
Markdown
43 lines
906 B
Markdown
# detect-newline [](https://travis-ci.org/sindresorhus/detect-newline)
|
|
|
|
> Detect the dominant newline character of a string
|
|
|
|
|
|
## Install
|
|
|
|
```
|
|
$ npm install detect-newline
|
|
```
|
|
|
|
|
|
## Usage
|
|
|
|
```js
|
|
const detectNewline = require('detect-newline');
|
|
|
|
detectNewline('foo\nbar\nbaz\r\n');
|
|
//=> '\n'
|
|
```
|
|
|
|
|
|
## API
|
|
|
|
### detectNewline(string)
|
|
|
|
Returns the detected newline or `undefined` when no newline character is found.
|
|
|
|
### detectNewline.graceful(unknown)
|
|
|
|
Returns the detected newline or `\n` when no newline character is found or the input is not a string.
|
|
|
|
|
|
## Related
|
|
|
|
- [detect-newline-cli](https://github.com/sindresorhus/detect-newline-cli) - CLI for this module
|
|
- [detect-indent](https://github.com/sindresorhus/detect-indent) - Detect the indentation of code
|
|
|
|
|
|
## License
|
|
|
|
MIT © [Sindre Sorhus](https://sindresorhus.com)
|