Sha256: f4344ef642b935923eff7d3685f3f732df7723f480ae929d14c9122a66b27f09
Contents?: true
Size: 236 Bytes
Versions: 24
Compression:
Stored size: 236 Bytes
Contents
'use strict'; /** * Check whether a string has less interpolation * * @param {string} string * @return {boolean} If `true`, a string has less interpolation */ module.exports = function (string) { return /@{.+?}/.test(string); };
Version data entries
24 entries across 24 versions & 1 rubygems