(it)
| 217 | // Array |
| 218 | // array('str1,str2,str3') => ['str1', 'str2', 'str3'] |
| 219 | function array(it){ |
| 220 | return String(it).split(','); |
| 221 | } |
| 222 | var push = ArrayProto.push |
| 223 | , unshift = ArrayProto.unshift |
| 224 | , slice = ArrayProto.slice |
no test coverage detected