Files
30-seconds-of-code/node_modules/regexp-tree/dist/interpreter/finite-automaton/transforms/index.js
2019-08-20 15:52:05 +02:00

10 lines
199 B
JavaScript

/**
* The MIT License (MIT)
* Copyright (c) 2017-present Dmitry Soshnikov <dmitry.soshnikov@gmail.com>
*/
'use strict';
module.exports = [
// a+ -> aa*
require('./char-plus-to-star-transform')];