Sha256: b184f72a1cef1dffa0c5053221f142ac11f19c19e3fdea3ca88276cc1b3694ca
Contents?: true
Size: 284 Bytes
Versions: 24
Compression:
Stored size: 284 Bytes
Contents
'use strict'; /** * 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 */ module.exports = function (string) { return /{.+?}/.test(string); };
Version data entries
24 entries across 24 versions & 1 rubygems