jok
Version:
Bundle of utility functions for code generation related to nodejs and graphql
11 lines (10 loc) • 328 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var fs_1 = require("fs");
var path = require("path");
function default_1(location) {
var fullpath = path.join(__dirname, '..', location);
var result = (0, fs_1.readFileSync)(fullpath, 'utf8');
return result;
}
exports.default = default_1;