source: node_modules/d3-hierarchy/src/accessors.js@ e4c61dd

Last change on this file since e4c61dd was e4c61dd, checked in by istevanoska <ilinastevanoska@…>, 6 months ago

Prototype 1.1

  • Property mode set to 100644
File size: 166 bytes
Line 
1export function optional(f) {
2 return f == null ? null : required(f);
3}
4
5export function required(f) {
6 if (typeof f !== "function") throw new Error;
7 return f;
8}
Note: See TracBrowser for help on using the repository browser.