summaryrefslogtreecommitdiff
path: root/tools/doc/node_modules/js-yaml/index.js
blob: 620bc293ffe032d7a30e0cce20518ff415fd82d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
'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/
  'eslint',
  'node_modules',
  'js-yaml'
);

module.exports = require(realJSYaml);