MCPcopy Create free account
hub / github.com/ImprintLab/Medical-SAM2 / isString

Function isString

static/js/bulma-carousel.js:231–233  ·  view source on GitHub ↗
(unknown)

Source from the content-addressed store, hash-verified

229 return typeof unknown === "number";
230};
231var isString = function isString(unknown) {
232 return typeof unknown === 'string' || !!unknown && (typeof unknown === 'undefined' ? 'undefined' : _typeof(unknown)) === 'object' && Object.prototype.toString.call(unknown) === '[object String]';
233};
234var isDate = function isDate(unknown) {
235 return (Object.prototype.toString.call(unknown) === '[object Date]' || unknown instanceof Date) && !isNaN(unknown.valueOf());
236};

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected