Skip to content

Instantly share code, notes, and snippets.

@coskuntekin
Created July 5, 2019 08:15
Show Gist options
  • Save coskuntekin/4935486fc83520ca766161e84740cce0 to your computer and use it in GitHub Desktop.
Save coskuntekin/4935486fc83520ca766161e84740cce0 to your computer and use it in GitHub Desktop.
// jshint esversion:6
let data = '';
const getSet = {
get: ()=> {
return data;
},
set: (val)=> {
data = val;
}
};
export { getSet };
import { getSet } from '../lib/getSet';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment