Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/fourtyone11/origin-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'assets/node_modules/parent-module/index.js')
-rw-r--r--assets/node_modules/parent-module/index.js37
1 files changed, 0 insertions, 37 deletions
diff --git a/assets/node_modules/parent-module/index.js b/assets/node_modules/parent-module/index.js
deleted file mode 100644
index a26f953..0000000
--- a/assets/node_modules/parent-module/index.js
+++ /dev/null
@@ -1,37 +0,0 @@
-'use strict';
-const callsites = require('callsites');
-
-module.exports = filepath => {
- const stacks = callsites();
-
- if (!filepath) {
- return stacks[2].getFileName();
- }
-
- let seenVal = false;
-
- // Skip the first stack as it's this function
- stacks.shift();
-
- for (const stack of stacks) {
- const parentFilepath = stack.getFileName();
-
- if (typeof parentFilepath !== 'string') {
- continue;
- }
-
- if (parentFilepath === filepath) {
- seenVal = true;
- continue;
- }
-
- // Skip native modules
- if (parentFilepath === 'module.js') {
- continue;
- }
-
- if (seenVal && parentFilepath !== filepath) {
- return parentFilepath;
- }
- }
-};