Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

edx-modulestore

Package Overview
Dependencies
Maintainers
1
Versions
43
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

edx-modulestore - npm Package Compare versions

Comparing version 0.2.0 to 0.2.1

15

lib/course.js

@@ -110,3 +110,8 @@ 'use strict';

_saveAboutFields: function () {
return Promise.map(this._about, function (field) {
var fields = [];
for (var about in this._about) {
fields[about] = this._about[about];
}
return Promise.map(fields, function (field) {
return field.saveAsync();

@@ -313,5 +318,7 @@ });

save: function () {
this._super()
.then(function (course) {
return course._saveAboutFields();
var self = this;
return this._super()
.then(function () {
return self._saveAboutFields();
})

@@ -318,0 +325,0 @@ .return(this);

{
"name": "edx-modulestore",
"version": "0.2.0",
"version": "0.2.1",
"description": "Easy browsing of Open edX modulestores",

@@ -5,0 +5,0 @@ "author": "Bertrand Marron",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc