Guest User

Untitled

a guest
May 21st, 2018
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. static inline bool
  2. IsEllipsis(jsval v)
  3. {
  4. if (!JSVAL_IS_STRING(v))
  5. return false;
  6. JSString* str = JSVAL_TO_STRING(v);
  7. if (JS_GetStringLength(str) != 3)
  8. return false;
  9. jschar* chars = JS_GetStringChars(str), dot('.');
  10. return (chars[0] == dot &&
  11. chars[1] == dot &&
  12. chars[2] == dot);
  13. }
Add Comment
Please, Sign In to add comment