文件名称:gtin:GTIN(UPC,EAN,ITF等)实用程序
文件大小:94KB
文件格式:ZIP
更新时间:2024-05-22 03:23:40
TypeScript
gtin GTIN(UPC,EAN,ITF等)实用程序。 npm install gtin gtin.isGTIN(barcode) 根据给定的字符串是否为GTIN条形码,返回true或false。 如果提供了空字符串或字符串以外的任何其他字符串,则会引发错误。 注意:这不会通过校验位来验证代码。 验证是通过gtin.isValid完成的。 import { isGTIN } from 'gtin' isGTIN ( '1234' ) // false isGTIN ( '12341238' ) // true isGTIN ( '' ) // Error thrown isGTIN ( 123 ) // Error thrown gtin.isValid(barcode) 通过校验位验证GTIN(14、13、12或8位)条形
【文件预览】:
gtin-master
----.travis.yml(130B)
----package.json(1KB)
----jest.config.js(6KB)
----LICENSE(1KB)
----src()
--------common.ts(693B)
--------__tests__()
--------upc-e.ts(2KB)
--------index.ts(1KB)
----tsconfig.json(6KB)
----.gitignore(40B)
----CHANGELOG.md(1KB)
----README.md(5KB)
----yarn.lock(207KB)
----babel.config.js(69B)