Change url to example.com

This commit is contained in:
Artur 2018-07-09 19:54:59 +03:00
parent 5d41edf878
commit aeadb548eb
2 changed files with 2 additions and 2 deletions

View file

@ -181,7 +181,7 @@ is.directInstanceOf(new UnicornError(), Error);
Returns `true` if `value` is an instance of `URL` class.
```js
const url = new URL('https://google.com');
const url = new URL('https://www.example.com');
is.urlInstance(url);
//=> true

View file

@ -535,7 +535,7 @@ test('is.directInstanceOf', t => {
});
test('is.urlInstance', t => {
const url = new URL('https://google.com');
const url = new URL('https://www.example.com');
t.true(m.urlInstance(url));