google-supported-domains

1.0.0 • Public • Published

google-supported-domains

npm

google-supported-domains is a Node (JavaScript) module exports all Google supported domains (.google.*), and provides an API to test if any domain is a Google domain.

Installation

$ npm install google-supported-domains

Usage

import domains from 'google-supported-domains'

// Get all Google supported domains as a string array.
domains.all()
// => ['.google.ad', '.google.ae', '.google.al', ...]

// Test if any domain is a Google domain.
domains.test('www.google.com')    // => true
domains.test('www.google.co.jp')  // => true
domains.test('mail.google.com')   // => true
domains.test('www.example.com')   // => false
domains.test('foo.example.net')   // => false

Acknowledgements

License

Licensed under the MIT License.

Readme

Keywords

Package Sidebar

Install

npm i google-supported-domains

Weekly Downloads

0

Version

1.0.0

License

MIT

Unpacked Size

3.31 kB

Total Files

3

Last publish

Collaborators

  • jmlntw