enhancementhelp wanted
仓库指标
- 星标
- (0 个星标)
- PR 合并指标
- (30 天内没有已合并 PR)
描述
Example:
const unmarshaller = {
foo: builder.string('foo')
};
const config = unmarshal(lookupFn, unmarshaller)
Given the input {foo: 'bar'}, would become:
const unmarshaller = {
foo: builder.string('foo')
};
const config = {
foo: 'bar'
}