More progress.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@3936 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2006-03-10 04:02:32 +00:00
parent ca66f91ac7
commit 600a74ee39
11 changed files with 314 additions and 116 deletions
+10
View File
@@ -0,0 +1,10 @@
package com.threerings.util {
public class StringUtil
{
public static function isBlank (str :String) :Boolean
{
return (str == null) || (str.search("\\S") == -1);
}
}
}