Sha256: 4ac1e0fa76800ada7abe9a6f6a55d808e10ecbaeea93eadc6332802c747b9d28
Contents?: true
Size: 371 Bytes
Versions: 24
Compression:
Stored size: 371 Bytes
Contents
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports["default"] = _default; /** * Check whether a string has JS template literal interpolation or HTML-like template * * @param {string} string * @return {boolean} If `true`, a string has template literal interpolation */ function _default(string) { return /{.+?}/.test(string); }
Version data entries
24 entries across 24 versions & 1 rubygems