//1// Copyright (c) 2006-2025 Wade Alcorn - [email protected]2// Browser Exploitation Framework (BeEF) - https://beefproject.com3// See the file 'doc/COPYING' for copying permission4//56/**7* A series of functions that handle statuses, returns a number based on the function called.8* @namespace beef.are9*/1011beef.are = {12/**13* A function for handling a success status14* @memberof beef.are15* @method status_success16* @return {number} 117*/18status_success: function(){19return 1;20},21/**22* A function for handling an unknown status23* @memberof beef.are24* @method status_unknown25* @return {number} 026*/27status_unknown: function(){28return 0;29},30/**31* A function for handling an error status32* @memberof beef.are33* @method status_error34* @return {number} -135*/36status_error: function(){37return -1;38}39};40beef.regCmp("beef.are");414243