pupa

WebJar for pupa

Лицензия

Лицензия

MIT
Группа

Группа

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

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

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

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

2.1.1
Дата

Дата

Тип

Тип

jar
Описание

Описание

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

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

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

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

https://github.com/sindresorhus/pupa

Скачать pupa

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

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

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

Зависимости

compile (1)

Идентификатор библиотеки Тип Версия
org.webjars.npm : escape-goat jar [2.0.0,3)

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

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

pupa

Simple micro templating

Useful when all you need is to fill in some placeholders.

Install

$ npm install pupa

Usage

const pupa = require('pupa');

pupa('The mobile number of {name} is {phone.mobile}', {
	name: 'Sindre',
	phone: {
		mobile: '609 24 363'
	}
});
//=> 'The mobile number of Sindre is 609 24 363'

pupa('I like {0} and {1}', ['🦄', '🐮']);
//=> 'I like 🦄 and 🐮'

// Double braces encodes the HTML entities to avoid code injection
pupa('I like {{0}} and {{1}}', ['<br>🦄</br>', '<i>🐮</i>']);
//=> 'I like &lt;br&gt;🦄&lt;/br&gt; and &lt;i&gt;🐮&lt;/i&gt;'

API

pupa(template, data)

template

Type: string

Text with placeholders for data properties.

data

Type: object | unknown[]

Data to interpolate into template.

FAQ

What about template literals?

Template literals expand on creation. This module expands the template on execution, which can be useful if either or both template and data are lazily created or user-supplied.

Related

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

Версия
2.1.1
2.0.1
1.0.0