Remove errant space

This commit is contained in:
Greg 2021-08-06 09:23:35 -06:00
parent aa8f5841f9
commit 618a8c458d
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ const userEndpoint = '/wp/v2/users';
* @param statuses Status of the object to check
* @returns {Promise<void>}
*/
const deleteAllRepositoryObjects = async ( repository, defaultObjectId = null, statuses = [ 'draft', 'publish', 'trash' ] ) => {
const deleteAllRepositoryObjects = async ( repository, defaultObjectId = null, statuses = [ 'draft', 'publish', 'trash' ] ) => {
let objects;
const minimum = defaultObjectId == null ? 0 : 1;