in lib/client.js [215:225]
deleteProject(projectName, options) {
const body = Buffer.from(JSON.stringify({
projectName
}));
const headers = {
// 'x-log-bodyrawsize': body.byteLength
};
return this._request('DELETE', projectName, '/', {}, body, headers, options);
}