UNPKG

@benev/slate

Version:
10 lines 281 B
export function find_in_blueprint(obj, purpose) { let current = obj; for (const key of purpose) { if (current[key] === undefined) return undefined; current = current[key]; } return current; } //# sourceMappingURL=find_in_blueprint.js.map