UNPKG

@atlaskit/adf-schema

Version:

Shared package that contains the ADF-schema (json) and ProseMirror node/mark specs

12 lines (10 loc) 237 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.isRgb = isRgb; // eslint-disable-line import/no-namespace var IS_RGB_REGEX = /rgba?\(/; function isRgb(color) { return IS_RGB_REGEX.test(color); }