gitextract_n9o6lp7q/ ├── .editorconfig ├── .eslintrc.js ├── .gitattributes ├── .github/ │ ├── CONTRIBUTING.md │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ ├── dependabot.yml │ └── workflows/ │ ├── ci.yml │ └── codeql-analysis.yml ├── .gitignore ├── .jsbeautifyrc ├── .npmignore ├── .stylelintrc.json ├── LICENSE ├── README.md ├── docs/ │ ├── CHANGELOG.md │ └── api.md ├── inch.json ├── index.js ├── lib/ │ ├── go-loader.js │ └── node-go-require.js ├── package.json └── test/ ├── helpers/ │ ├── helper.js │ ├── main/ │ │ ├── error.go │ │ ├── main.go │ │ ├── pet.go │ │ └── vertex.go │ ├── pet-helper.js │ ├── pet.js │ └── vertex.js └── spec/ ├── go-loader-spec.js ├── index-spec.js └── node-go-require-spec.js