about summary refs log tree commit diff stats
path: root/tree-sitter/dsk/dsk-cli/templates/js-addon/index.js
blob: 4780f31ba01fdb2b4f77b628e0c409f20ea0733d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
try {
  module.exports = require("./build/Release/tree_sitter___DSL_NAME___binding");
} catch (error1) {
  if (error1.code !== 'MODULE_NOT_FOUND') {
    throw error1;
  }
  try {
    module.exports = require("./build/Debug/tree_sitter___DSL_NAME___binding");
  } catch (error2) {
    if (error2.code !== 'MODULE_NOT_FOUND') {
      throw error2;
    }
    throw error1
  }
}