Files
flights_web_raw/node_modules/polished/lib/internalHelpers/_endsWith.js.flow
T

10 lines
199 B
Plaintext

// @flow
/**
* Check if a string ends with something
* @private
*/
export default function endsWith(string: string, suffix: string): boolean {
return string.substr(-suffix.length) === suffix
}