1
0
mirror of https://github.com/lancedikson/bowser synced 2026-03-02 03:40:27 +00:00

Continue writing

This commit is contained in:
Denis Demchenko
2017-04-09 17:13:00 +03:00
parent 575ba8076e
commit 3bb6654320
8 changed files with 164 additions and 25 deletions

7
test/unit/utils.js Normal file
View File

@@ -0,0 +1,7 @@
import test from 'ava';
import { getFirstMatch } from '../../src/utils';
test('getFirstMatch', t => {
const matchedVersion = getFirstMatch(/version\/(\S+)/i, 'Chrome Version/11.11.11');
t.is(matchedVersion, '11.11.11');
});