内容简介:Chrome 71 首个 Beta 版已发布。 国际相对时间格式 Chrome 71 引入了 Intl.RelativeTimeFormat(),它将开销转移到了 JavaScript 引擎。 const rtf = new Intl.RelativeTimeFormat('en'); rtf.format(3.14, ...
Chrome 71 首个 Beta 版已发布。
国际相对时间格式
Chrome 71 引入了 Intl.RelativeTimeFormat(),它将开销转移到了 JavaScript 引擎。
const rtf = new Intl.RelativeTimeFormat('en'); rtf.format(3.14, 'second'); // → 'in 3.14 seconds' rtf.format(-15, 'minute'); // → '15 minutes ago'
其他新特性
Add FullscreenOptions
Add 'persistent-storage' property to the Permission API
Async touchpad pinch zoom events
COLR/CPAL font support
CSS gradient color stop double-position syntax
Implement 'left' and 'right' values for 'text-underline-position'
JavaScript Modules: Credentials mode defaults to "same-origin"
TextEncoderStream and TextDecoderStream APIs
Unprefixed Fullscreen API
【声明】文章转载自:开源中国社区 [http://www.oschina.net]
以上所述就是小编给大家介绍的《Chrome 71 Beta 发布:引入国际化相对时间格式》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Linux/UNIX系统编程手册
Michael Kerrisk / 孙剑 许从年 董健、孙余强 郭光伟 陈舸 / 人民邮电出版社 / 2014-1 / 158
《linux/unix系统编程手册(上、下册)》是介绍linux与unix编程接口的权威著作。linux编程资深专家michael kerrisk在书中详细描述了linux/unix系统编程所涉及的系统调用和库函数,并辅之以全面而清晰的代码示例。《linux/unix系统编程手册(上、下册)》涵盖了逾500个系统调用及库函数,并给出逾200个程序示例,另含88张表格和115幅示意图。 《li......一起来看看 《Linux/UNIX系统编程手册》 这本书的介绍吧!