UNPKG

acklen-keystone

Version:

Web Application Framework and Admin GUI / Content Management System built on Express.js and Mongoose

10 lines (8 loc) 237 B
/** * Retrieves a list */ module.exports = function list (key) { var result = this.lists[key] || this.lists[this.paths[key]]; if (!result) throw new ReferenceError('Unknown keystone list ' + JSON.stringify(key)); return result; };