parseDigits.test.js 186 B

1234567
  1. import parseDigits from './parseDigits.js'
  2. describe('parseDigits', () => {
  3. it('should parse digits', () => {
  4. parseDigits('+٤٤٢٣٢٣٢٣٤').should.equal('442323234')
  5. })
  6. })