eol

WebJar for eol

Лицензия

Лицензия

MIT
Группа

Группа

org.webjars.npm
Идентификатор

Идентификатор

eol
Последняя версия

Последняя версия

0.9.1
Дата

Дата

Тип

Тип

jar
Описание

Описание

eol
WebJar for eol
Ссылка на сайт

Ссылка на сайт

https://www.webjars.org
Система контроля версий

Система контроля версий

https://github.com/ryanve/eol

Скачать eol

Имя Файла Размер
eol-0.9.1.pom
eol-0.9.1.jar 8 KB
eol-0.9.1-sources.jar 22 bytes
eol-0.9.1-javadoc.jar 22 bytes
Обзор

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/org.webjars.npm/eol/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>eol</artifactId>
    <version>0.9.1</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/eol/
implementation 'org.webjars.npm:eol:0.9.1'
// https://jarcasting.com/artifacts/org.webjars.npm/eol/
implementation ("org.webjars.npm:eol:0.9.1")
'org.webjars.npm:eol:jar:0.9.1'
<dependency org="org.webjars.npm" name="eol" rev="0.9.1">
  <artifact name="eol" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='eol', version='0.9.1')
)
libraryDependencies += "org.webjars.npm" % "eol" % "0.9.1"
[org.webjars.npm/eol "0.9.1"]

Зависимости

Библиотека не имеет зависимостей. Это самодостаточное приложение, которое не зависит ни от каких других библиотек.

Модули Проекта

Данный проект не имеет модулей.

eol

Newline character converter for JavaScript. Available on npm.

npm install eol --save

require or import

const eol = require('eol')
import eol from 'eol'

API

eol.auto(text)

  • Normalize line endings in text for the current operating system
  • @return string with line endings normalized to \r\n or \n

eol.crlf(text)

  • Normalize line endings in text to CRLF (Windows, DOS)
  • @return string with line endings normalized to \r\n

eol.lf(text)

  • Normalize line endings in text to LF (Unix, OS X)
  • @return string with line endings normalized to \n

eol.cr(text)

  • Normalize line endings in text to CR (Mac OS)
  • @return string with line endings normalized to \r

eol.before(text)

  • Add linebreak before text
  • @return string with linebreak added before text

eol.after(text)

  • Add linebreak after text
  • @return string with linebreak added after text

eol.split(text)

  • Split text by newline
  • @return array of lines

Joining

Coercing eol.auto|eol.crlf|eol.lf|eol.cr to string yields the appropriate character. This is useful for joining.

String(eol.lf) // "\n"
eol.split(text).join(eol.auto) // same as eol.auto(text)
eol.split(text).filter(line => line).join(eol.auto) // text joined after removing empty lines
eol.split(text).slice(-3).join(eol.auto) // last 3 lines joined

Elsewhere in space

ssv

License

MIT

Версии библиотеки

Версия
0.9.1