1.1.1 • Published 8 years ago

group-links-by-domain v1.1.1

Weekly downloads
2
License
MIT
Repository
github
Last release
8 years ago

group-links-by-domain

NPM version Build Status Coveralls Status Dependency Status

group links by domain

Install

npm install --save group-links-by-domain

Usage

import domainLinks from 'group-links-by-domain';

const links = [
  'http://what.ever/a/',
  'http://what.ever/b/',
  'http://www.what.ever/c/',
  'http://foo.bar/1/',
  'http://www.foo.bar/1/',
  'http://foo.bar/2/',
  'http://foo.bar/3/',
  'http://www.baz.com/boo/',
];

domainLinks(links); /* [
  { domain: 'what.ever',
    links: [
      'http://what.ever/a/',
      'http://what.ever/b/',
      'http://what.ever/c/' ]},
  { domain: 'foo.bar',
    links: [
      'http://foo.bar/1/',
      'http://foo.bar/2/',
      'http://foo.bar/3/' ]},
  { domain: 'www.baz.com',
    links: [
      'http://www.baz.com/boo/' ]}
]; */

License

MIT © Vladimir Starkov

1.1.1

8 years ago

1.1.0

8 years ago

1.0.0

8 years ago