8 lines
115 B
JavaScript
8 lines
115 B
JavaScript
if(false) {
|
|
require('./not-found-file.json');
|
|
}
|
|
|
|
var out = require('./found-file.json');
|
|
|
|
console.log(out.head);
|