1 // +build purego appengine js 2 3 // This file contains the safe implementation of nanotime using time.Now(). 4 5 package puddle 6 7 import ( 8 "time" 9 ) 10 11 func nanotime() int64 { 12 return time.Now().UnixNano() 13 } 14
View as plain text