Last active
September 29, 2023 16:39
-
-
Save felixrabe/db88674566e14e413c6f to your computer and use it in GitHub Desktop.
CoffeeScript: String.startsWith() and String.endsWith()
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# http://stackoverflow.com/a/646643 | |
String::startsWith ?= (s) -> @slice(0, s.length) == s | |
String::endsWith ?= (s) -> s == '' or @slice(-s.length) == s |
mirek
commented
Oct 1, 2014
This is so beautiful.
Jesus. Indeed.
Verily!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment