文件名称:ntz:标准化日期字符串中的时区以转换为JavaScript日期
文件大小:5KB
文件格式:ZIP
更新时间:2024-05-22 16:47:59
JavaScript
恩茨 标准化日期字符串中的时区,以使其可转换为JavaScript日期。 const ntz = require ( 'ntz' ) const original = 'Sunday, July 24, 19:32:00 CEST 2016' console . log ( new Date ( original ) ) // => Invalid Date const normalized = ntz ( original ) console . log ( new Date ( normalized ) ) // => 2016-07-24T17:32:00.000Z 安装 npm install ntz 恩茨 用匹配的UTC偏移量替换时区缩写(如“ CDT”)如果字符串中未遇到已知的时区,则返回原始字符串。 参数 s 原始日期/时间字符串 返回时区缩写已替换的 执照 麻省理工学
【文件预览】:
ntz-master
----example.js(245B)
----.travis.yml(47B)
----LICENSE(1KB)
----test()
--------ntz.js(788B)
----README.md(1KB)
----ntz.js(6KB)
----.gitignore(97B)
----package.json(700B)