-
用于通过命令行将对象按照模板重塑的实用程序被称为refract,其功能犹如类固醇般的解构赋值
资源介绍
折射
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