JavaScript Modules (import/export)

What module encapsulation pattern is illustrated here?
// settings.js
let config = { debug: false };
export const getConfig = () => ({ ...config });
export const setConfig = (newConfig) => {
  config = { ...newConfig };
};
Next Question (15/21)