UNPKG

react-cimpress-comment

Version:

Visualizes comment(s) for a particular platform resource

17 lines (13 loc) 369 B
'use strict'; var url = require('url'); var isCimpressDomain = function isCimpressDomain(link) { return (/(^|.)cimpress.(io|com)$/.test(url.parse(link || '').host) ); }; var makeIntoLabel = function makeIntoLabel(link) { return url.parse(link || '').host; }; module.exports = { isCimpressDomain: isCimpressDomain, makeIntoLabel: makeIntoLabel };