Remove lib.typeOf

It clashes with builtins.typeOf.
This commit is contained in:
Eelco Dolstra 2014-02-27 21:27:29 +01:00
parent d74c40d6bf
commit ebe57b1ac8

View file

@ -10,7 +10,6 @@ with import ./strings.nix;
rec {
isType = type: x: (x._type or "") == type;
typeOf = x: x._type or "";
setType = typeName: value: value // {
_type = typeName;