qw

WebJar for qw

Лицензия

Лицензия

ISC
Группа

Группа

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

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

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

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

1.0.1
Дата

Дата

Тип

Тип

jar
Описание

Описание

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

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

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

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

https://github.com/iarna/node-qw

Скачать qw

Имя Файла Размер
qw-1.0.1.pom
qw-1.0.1.jar 4 KB
qw-1.0.1-sources.jar 22 bytes
qw-1.0.1-javadoc.jar 22 bytes
Обзор

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

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

Зависимости

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

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

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

qw

Quoted word literals!

const qw = require('qw')

const myword = qw` this is
  a long list
  of words`
// equiv of:
const myword = [ 'this', 'is', 'a', 'long', 'list', 'of', 'words' ]

You can embed vars in the usual way:

const mywords = qw`product ${23 * 5} also ${'escaping a string'}`
// equiv of:
const mywords = [ 'product', 23 * 5, 'also', 'escaping a string' ]

You can also embed vars inside strings:

const mywords = qw`product=${23 * 5} also "${'escaping a string'}"`
// equiv of:
const mywords = [ 'product=' + (23 * 5), 'also', '"escaping a string"' ]

DESCRIPTION

This uses template strings to bring over this little common convenience from Perl-land.

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

Версия
1.0.1