アットウィキロゴ

fix

オブジェクトを読み取り専用にします。
Object.freeze()

Usage
let a =  ({
  foo: 3,
  bar: 4
}).fix;

Result
{
  foo: 3,
  bar: 4
}
最終更新:2016年11月16日 12:24