replaced bluebird with any-promise to allow consumers of the library to choose their promise implementation

This commit is contained in:
Tim Hardy
2016-09-11 23:33:26 -05:00
parent 4626f8f6bf
commit ba390df7b6
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
const error = require('./error.js');
const Exp = require('./expression.js');
const assert = require('assert');
const Promise = require("bluebird");
const Promise = require('any-promise');
var render = {