Skip to content

Commit

Permalink
Change export default to export const x
Browse files Browse the repository at this point in the history
  • Loading branch information
jofftiquez committed May 17, 2018
1 parent 575677c commit 163a08f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/filters/sandwich/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const corpus = {
};
const corpusRegex = /(<|>|\[|\]|\(|\)|\{|\})/g;

export default (Vue) => {
export const sandwich = (Vue) => {
Vue.filter('morph-sandwich', (value, start, end) => {
if(!value) return;
return sandwich(value, start, end);
Expand Down

0 comments on commit 163a08f

Please sign in to comment.