Skip to content

Commit

Permalink
Make compatible with Node v14.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cressie176 committed May 4, 2024
1 parent 72ab453 commit aa8fa13
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5,029 deletions.
3 changes: 2 additions & 1 deletion lib/config/configure.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
const debug = require('debug')('rascal:config:configure');
const format = require('util').format;
const url = require('url');
const { URL } = require('node:url');
const _ = require('lodash');
const uuid = require('uuid').v4;
const XRegExp = require('xregexp');
const baseline = require('./baseline');
const fqn = require('./fqn');

const { URL } = url;

module.exports = _.curry((rascalConfig, next) => {
rascalConfig = _.defaultsDeep(rascalConfig, baseline);

Expand Down
Loading

0 comments on commit aa8fa13

Please sign in to comment.