FLUJOS/VISUALIZACION/node_modules/polished/lib/internalHelpers/_endsWith.js.flow
2025-11-07 00:06:12 +01:00

9 lines
199 B
Text
Executable file

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