12345678910111213141516171819 |
- "use strict";
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports["default"] = matchesEntirely;
- function matchesEntirely(text, regular_expression) {
-
-
- text = text || '';
- return new RegExp('^(?:' + regular_expression + ')$').test(text);
- }
|