I would like a simple function that returns t if a number/string have decimals or nil if it does not have decimals ignoring the type of the number. Some cases I look for: 0 returns nil. 0.0 returns nil. 1 returns nil. 1.0 returns nil. -43 returns nil. -43.0 returns nil.