Small helper library to check if a string is an ObjectID. Comes in handy when the frontend just want to do a simple check of and ID to see if it's an ObjectID or not.
const isobjectid = require('@kentos/isobjectid')
if (isobjectid(string)) {
// go on from here
} else {
// throw an error or whatever you want
}
1.0.1 - README and package meta data updates 1.0.0 - First release