登录 注册
当前位置:主页 > 资源下载 > 5 > 用于通过命令行将对象按照模板重塑的实用程序被称为refract,其功能犹如类固醇般的解构赋值

用于通过命令行将对象按照模板重塑的实用程序被称为refract,其功能犹如类固醇般的解构赋值

  • 更新:2024-09-11 11:58:44
  • 大小:19KB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:其它 - 开发技术
  • 格式:ZIP

资源介绍

折射 Refract 是一个命令行实用程序,用于将对象重塑为模板。 // object { "id" : "5768" , "customer" : "Stijn Debrouwere" , "subtotal" : 200 , "handling" : 10 } // template { "id" : "parseInt id" , "uid" : "dasherize customer" , "tax" : "subtotal * 0.21" , "total" : "subtotal + handling + tax" } // result { "id" : 5768 , "uid" : "stijn-debrouwere" , "tax" : 42 , "t