summaryrefslogtreecommitdiff
path: root/tools/doc/node_modules/js-yaml/index.js
blob: 476b3a0d487c4ac361f824dea83a7daff9fbcdb0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
'use strict';

// Hack to load the js-yaml module from eslint.
// No other reason than that it’s huge.

const path = require('path');

const realJSYaml = path.resolve(
  __dirname, '..', '..', '..', // tools/
  'node_modules',
  'eslint',
  'node_modules',
  'js-yaml'
);

module.exports = require(realJSYaml);