Remove fastpath

Summary: I originally added fastpath to node-haste to speed up `path` operations by an order of magnitude. Now we are exclusively using Node 6 at FB so we don't need to ship this thing any more.

Reviewed By: bestander

Differential Revision: D4029092

fbshipit-source-id: 064cf67f4f79ce4f2774fb4e430d22eef4a95434
This commit is contained in:
Christoph Pojer
2016-10-20 00:12:21 -07:00
committed by Facebook Github Bot
parent c2fd4d48bf
commit fb4f34bc9b
19 changed files with 53 additions and 1228 deletions

View File

@@ -8,11 +8,11 @@
*/
'use strict';
const denodeify = require('denodeify');
const crypto = require('crypto');
const denodeify = require('denodeify');
const fs = require('graceful-fs');
const isAbsolutePath = require('absolute-path');
const path = require('../fastpath');
const path = require('path');
const tmpDir = require('os').tmpDir();
function getObjectValues(object) {