ADDED: * math, time functions to tplx/sprigx FIXED: * logging not initializing properly on some BSDs
10 lines
139 B
Go
10 lines
139 B
Go
package sprigx
|
|
|
|
// metaIsNil returns true if obj is explicitly nil.
|
|
func metaIsNil(obj any) (isNil bool) {
|
|
|
|
isNil = obj == nil
|
|
|
|
return
|
|
}
|