PageRenderTime 45ms CodeModel.GetById 22ms RepoModel.GetById 0ms app.codeStats 0ms

/core/src/com/visfleet/core/isNullOrEmpty.as

https://github.com/visfleet/Radiator
ActionScript | 6 lines | 5 code | 1 blank | 0 comment | 3 complexity | 73ad7939b6586ba032e8444cdcc609eb MD5 | raw file
Possible License(s): MIT
  1. package com.visfleet.core {
  2. public function isNullOrEmpty(value:*):Boolean {
  3. return (value == null) || (value.toString() == "");
  4. }
  5. }