Files
antrean-anjungan/examples/nuxt3-websocket-client/node_modules/regexp-tree/dist/interpreter/finite-automaton/special-symbols.js
2025-09-18 19:01:22 +07:00

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
};