UNPKG

react-youtube-playlist

Version:

A react component for displaying the contents of a user's YouTube playlist.

38 lines (32 loc) 836 B
"use strict"; /** * The purpose of this module, is to find the project's .babelrc and * use its contents to bust the babel-loader's internal cache whenever an option * changes. * * @see https://github.com/babel/babel-loader/issues/62 * @see http://git.io/vLEvu */ var path = require("path"); var exists = require("./utils/exists")({}); var read = require("./utils/read")({}); var cache = {}; var find = function find(start, rel) { var file = path.join(start, rel); if (exists(file)) { return read(file); } var up = path.dirname(start); if (up !== start) { // Reached root return find(up, rel); } }; module.exports = function (loc, rel) { rel = rel || ".babelrc"; var cacheKey = `${loc}/${rel}`; if (!(cacheKey in cache)) { cache[cacheKey] = find(loc, rel); } return cache[cacheKey]; };