mirror of
https://github.com/Shiva108/ai-llm-red-team-handbook.git
synced 2026-08-29 14:20:48 +02:00
10 lines
204 B
JavaScript
10 lines
204 B
JavaScript
'use strict'
|
|
|
|
module.exports = function (cb) {
|
|
return function () {
|
|
var args = Array.prototype.slice.call(arguments, 1)
|
|
if (args.length) args.unshift(null)
|
|
return cb.apply(null, args)
|
|
}
|
|
}
|