parseDigits.test.js 244 B

1234567
  1. import parseDigits from './parseDigits.js';
  2. describe('parseDigits', function () {
  3. it('should parse digits', function () {
  4. parseDigits('+٤٤٢٣٢٣٢٣٤').should.equal('442323234');
  5. });
  6. });
  7. //# sourceMappingURL=parseDigits.test.js.map