db-migrate-base
Advanced tools
Comparing version 1.2.5 to 1.2.7
@@ -9,3 +9,3 @@ /* Simple JavaScript Inheritance | ||
// The base Class implementation (does nothing) | ||
Class = function(){}; | ||
var Class = function(){}; | ||
@@ -60,3 +60,3 @@ // Create a new Class that inherits from this class | ||
// And make this class extendable | ||
Class.extend = arguments.callee; | ||
Class.extend = module.exports.extend; | ||
@@ -63,0 +63,0 @@ return Class; |
@@ -10,3 +10,3 @@ var util = require('util'); | ||
module.exports = Base = Class.extend({ | ||
var Base = Class.extend({ | ||
init: function(intern) { | ||
@@ -228,3 +228,3 @@ this._escapeDDL = this._escapeDDL || '"'; | ||
else { | ||
options = options || {}; | ||
@@ -699,1 +699,3 @@ } | ||
Promise.promisifyAll(Base); | ||
module.exports = Base; |
{ | ||
"name": "db-migrate-base", | ||
"version": "1.2.5", | ||
"version": "1.2.7", | ||
"description": "db-migrate base driver", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
23505
602