mirror of
https://github.com/bower/bower.git
synced 2026-02-11 14:34:58 -05:00
14 lines
173 B
JavaScript
14 lines
173 B
JavaScript
function empty() {
|
|
return '';
|
|
}
|
|
|
|
// -------------------------
|
|
|
|
module.exports = {
|
|
head: empty,
|
|
tail: empty,
|
|
data: empty,
|
|
error: empty,
|
|
end: empty
|
|
};
|