Sha256: dcc81f2371fde95389a990227c899dfa9aaaa9c902d2744e4752e79fbccebf38
Contents?: true
Size: 309 Bytes
Versions: 228
Compression:
Stored size: 309 Bytes
Contents
String::beginsWith = (t, i) -> if i is false t is @substring(0, t.length) else t.toLowerCase() is @substring(0, t.length).toLowerCase() String::endsWith = (t, i) -> if i is false t is @substring(@length - t.length) else t.toLowerCase() is @substring(@length - t.length).toLowerCase()
Version data entries
228 entries across 228 versions & 2 rubygems