12345678910 |
- import matchesEntirely from './matchesEntirely.js';
- describe('matchesEntirely', function () {
- it('should work in edge cases', function () {
-
- matchesEntirely(undefined, '').should.equal(true);
- matchesEntirely('911231231', '4\d{8}|[1-9]\d{7}').should.equal(false);
- });
- });
|