mirror of
https://github.com/titanscouting/tra-analysis.git
synced 2025-10-10 04:10:18 +00:00
push all website files
This commit is contained in:
22
website/functions/node_modules/espurify/index.js
generated
vendored
Normal file
22
website/functions/node_modules/espurify/index.js
generated
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
/**
|
||||
* espurify - Clone new AST without extra properties
|
||||
*
|
||||
* https://github.com/estools/espurify
|
||||
*
|
||||
* Copyright (c) 2014-2018 Takuto Wada
|
||||
* Licensed under the MIT license.
|
||||
* https://github.com/estools/espurify/blob/master/MIT-LICENSE.txt
|
||||
*/
|
||||
'use strict';
|
||||
|
||||
var createWhitelist = require('./lib/create-whitelist');
|
||||
var cloneWithWhitelist = require('./lib/clone-ast');
|
||||
|
||||
function createCloneFunction (options) {
|
||||
return cloneWithWhitelist(createWhitelist(options));
|
||||
}
|
||||
|
||||
var espurify = createCloneFunction();
|
||||
espurify.customize = createCloneFunction;
|
||||
espurify.cloneWithWhitelist = cloneWithWhitelist;
|
||||
module.exports = espurify;
|
Reference in New Issue
Block a user