0.4.2 • Published 8 years ago

0model v0.4.2

Weekly downloads
53
License
MIT
Repository
github
Last release
8 years ago

Codacy

npm -g install 0model

  • Coverage: +
  • Browser: +

Browser

  • Include: //raw.githack.com/Daeren/0model/master/index.js

Global var: zm

Examples

var zm = require("0model");


zm(" D ").string().get().trim();            // <-- "D"
zm(" 13.").to.int().it.is.required();       // <-- true

zm({x: 1, y: 2}).to.have("x", "z");         // <-- false
zm({}).it.is.empty();                       // <-- true


zm("[1,2]").to.json().get();                // <-- [1, 2]
zm("[1,").to.json().to.string().get();      // <-- ''
zm("[1,").json().string().get();            // <-- ''

zm(5.9).int().str() + 10;                   // <-- '510'
zm(5.9).to.integer() + " num";              // <-- '5 num'
zm(zm('d0' / 1)).empty();                   // <-- true


zm([1, 2, 3]).set(x => x.reduce((a, b) => a + b)).get(console.log);
zm(3.14159).set(x => x.toFixed(0)).str().get(console.log);


zm("hello 2 world").to.string().then.remove(/\d+/).it.is.required();
zm("hello 2 world").to.string().then.remove(/\d+/).get();
zm("hello 2 world").to.string().then.remove(d => d.substr(2)) + "!";

Instance

AttributeTypeNote
-
to, then, is, itobjectthis
-
setfunction(v)return: this
getfunction(callback)return: current value
-
lastError-
value-current value
T
bool, booleanfunction(true, on, yes, 1) = true
str, stringfunction(NaN, null, undefined, []) = ""
int, integerfunction(radix)
float, numberfunction
-
datefunction
symbolfunction
-
table, hashTablefunction(notParse)
arrayfunction(notParse)
jsonfunction
M
removefunction(t)t: string, regEx (string), function(elem)
absfunction
clampfunction(min, max)
V
requiredfunctionfalse: NaN, [], null, undefined, "", Invalid Date, {}
emptyfunctiontrue: NaN, [], null, undefined, "", Invalid Date, {}
has, havefunction(...)for: string, array, object

License

MIT


@ Daeren

0.4.2

8 years ago

0.4.1

8 years ago

0.3.1

8 years ago

0.3.0

8 years ago

0.2.0

8 years ago

0.1.0

8 years ago

0.0.12

8 years ago

0.0.11

8 years ago

0.0.10

8 years ago

0.0.9

8 years ago

0.0.8

8 years ago

0.0.7

8 years ago

0.0.6

8 years ago

0.0.5

8 years ago

0.0.4

8 years ago

0.0.3

8 years ago

0.0.2

8 years ago

0.0.1

9 years ago