transliteration
Advanced tools
Comparing version 2.1.0 to 2.1.1
{ | ||
"name": "transliteration", | ||
"version": "2.1.0", | ||
"version": "2.1.1", | ||
"description": "Unicode to ACSII transliteration / slugify module for node.js, browser, Web Worker, ReactNative and CLI.", | ||
@@ -5,0 +5,0 @@ "main": "dist/node/src/node/index.js", |
@@ -44,3 +44,3 @@ # Transliteration | ||
<!-- UMD build --> | ||
<script async defer src="https://cdn.jsdelivr.net/npm/transliteration@2.0.4/dist/browser/bundle.umd.min.js"></script> | ||
<script async defer src="https://cdn.jsdelivr.net/npm/transliteration@2.1.1/dist/browser/bundle.umd.min.js"></script> | ||
<script> | ||
@@ -54,3 +54,3 @@ console.log(transliterate('你好')); | ||
<script type="module"> | ||
import { transliterate } from 'https://cdn.jsdelivr.net/npm/transliteration@2.0.4/dist/browser/bundle.esm.min.js'; | ||
import { transliterate } from 'https://cdn.jsdelivr.net/npm/transliteration@2.1.1/dist/browser/bundle.esm.min.js'; | ||
console.log(transliterate('你好')); | ||
@@ -296,3 +296,3 @@ </script> | ||
* `bower` support was dropped. Please use CDN or `webpack`/`rollup`. | ||
* As according to RFC 3986, more characters(`/a-zA-Z0-9-_.~/`) are kept as result for `slugify`, and it is configurable. | ||
* As according to RFC 3986, more characters(`/a-zA-Z0-9-_.~/`) are kept as allowed characters in the result for `slugify`, and it is configurable. | ||
* Added `uppercase` as an option for `slugify`, if is set to `true` then the generated slug will be converted to uppercase letters. | ||
@@ -299,0 +299,0 @@ * Unknown characters will be transliterated as empty string by default, instead of a meaningless `[?]`. |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1401033