UNPKG

is-figma-url

Version:

Simple regex to check whether a string is a valid Figma live embed url

7 lines (5 loc) 212 B
// Regex from https://www.figma.com/platform var REGEX = /https:\/\/([w.-]+\.)?figma.com\/(file|proto)\/([0-9a-zA-Z]{22,128})(?:\/.*)?$/; module.exports = function isFigmaUrl(url) { return REGEX.test(url); };