You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
constschema=newSchema('File',{Entity: {},size: 'number',ratio: {method: (file)=>file.size/10,returns: 'number'},});constobj={size: 100};constobj1=schema.calculate(obj);// Schema.check(obj);// Assign new calculated fields with given object
For memory only shorthand:
constschema=newSchema('File',{size: 'number',ratio: (file)=>file.size/10,});constobj={size: 100};constobj1=schema.calculate(obj);// Schema.check(obj);// Assign new calculated fields with given object
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
For memory only shorthand:
The text was updated successfully, but these errors were encountered: