aurelia-form
Version:
Makes working with forms just a tad more pleasant.
13 lines (10 loc) • 314 B
JavaScript
import {metadata} from 'aurelia-metadata';
import {Homefront} from 'homefront';
export class Metadata {
static forTarget(target) {
if (typeof target !== 'function') {
target = target.constructor;
}
return metadata.getOrCreateOwn('spoonx:form:metadata', Homefront, target, target.name);
}
}