Skip to content

Instantly share code, notes, and snippets.

@hiz8
Created May 22, 2018 09:50
Show Gist options
  • Select an option

  • Save hiz8/2ffc8a1c91b3ed47e8690ab000a330fd to your computer and use it in GitHub Desktop.

Select an option

Save hiz8/2ffc8a1c91b3ed47e8690ab000a330fd to your computer and use it in GitHub Desktop.
型チェック
function checkType(target, type) {
const result = Object.prototype.toString.call(target).slice(8, -1) === type ? true : false;
return result;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment