Skip to content

Latest commit

 

History

History
37 lines (25 loc) · 1 KB

README.md

File metadata and controls

37 lines (25 loc) · 1 KB

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.