This repository has been archived on 2024-07-27. You can view files and clone it, but cannot push or open issues or pull requests.
keksAccountGUI/node_modulesOLD/regexp-tree/dist/interpreter/finite-automaton/special-symbols.js

22 lines
327 B
JavaScript

/**
* The MIT License (MIT)
* Copyright (c) 2017-present Dmitry Soshnikov <dmitry.soshnikov@gmail.com>
*/
'use strict';
/**
* Epsilon, the empty string.
*/
var EPSILON = 'ε';
/**
* Epsilon-closure.
*/
var EPSILON_CLOSURE = EPSILON + '*';
module.exports = {
EPSILON: EPSILON,
EPSILON_CLOSURE: EPSILON_CLOSURE
};