Skip to content

Fix g is not defined issue #2064

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/model-builder.js
Original file line number Diff line number Diff line change
Expand Up @@ -681,7 +681,7 @@ function createModelClassCtor(name, ModelBaseClass) {
// from a dynamically defined function. The solution is to
// create a dynamically defined factory function that accepts
// closure variables as arguments.
const factory = new Function('ModelBaseClass', `
const factory = new Function('ModelBaseClass', 'g', `
// every class can receive hash of data as optional param
return function ${name}(data, options) {
if (!(this instanceof ${name})) {
Expand All @@ -693,7 +693,7 @@ function createModelClassCtor(name, ModelBaseClass) {
ModelBaseClass.apply(this, arguments);
};`);

return factory(ModelBaseClass);
return factory(ModelBaseClass, g);
} catch (err) {
// modelName is not a valid function/class name, e.g. 'grand-child'
// and our simple sanitization was not good enough.
Expand Down