rittenhop-dev/versions/5.94.2/node_modules/node-jose/lib/jws/helpers.js
2024-09-23 19:40:12 -04:00

13 lines
254 B
JavaScript

/*!
* jws/helpers.js - JWS Internal Helper Functions
*
* Copyright (c) 2015 Cisco Systems, Inc. See LICENSE file.
*/
"use strict";
module.exports = {
slice: function(input, start) {
return Array.prototype.slice.call(input, start || 0);
}
};