mirror of
https://github.com/kennethreitz/bake.git
synced 2026-06-05 23:00:17 +00:00
17 lines
395 B
JavaScript
17 lines
395 B
JavaScript
'use strict';
|
|
|
|
module.exports = function (filepath, options) {
|
|
options = options || {raw: false};
|
|
var file = this.store.get(filepath);
|
|
|
|
if (file.state === 'deleted' || file.contents === null) {
|
|
if ('defaults' in options) {
|
|
return options.defaults;
|
|
}
|
|
|
|
throw new Error(filepath + ' doesn\'t exist');
|
|
}
|
|
|
|
return options.raw ? file.contents : file.contents.toString();
|
|
};
|