mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00:00
9 lines
181 B
JavaScript
9 lines
181 B
JavaScript
"use strict";
|
|
|
|
var isSymbol = require("./is-symbol");
|
|
|
|
module.exports = function (value) {
|
|
if (!isSymbol(value)) throw new TypeError(value + " is not a symbol");
|
|
return value;
|
|
};
|