@darwino/darwino-react-bootstrap-notes
Version:
A set of Javascript classes and utilities
14 lines (12 loc) • 347 B
JavaScript
/*
* (c) Copyright Darwino Inc. 2014-2017.
*/
export default function RouteForm(entry) {
var form = entry && entry.form;
if (form) {
var path = form.replace(" ", "").toLowerCase();
return "/forms/" + encodeURIComponent(path) + "/" + encodeURIComponent(entry.__meta.unid);
}
return null;
}
//# sourceMappingURL=RouteForm.js.map