Write a function that returns true if the first string is the second string stretched, and false otherwise. A stretch is to repeat each character in a string the same number of times.
isStretched("pppaaannndddaaa", "panda") ➞ true
isStretched("sssshhiipp", "ship") ➞ false
isStretched("magnet", "magnet") ➞ true
isStretched("magneto", "magnet") ➞ false